Wine-Devel
By thread
wine-devel@list.winehq.org
By month
Messages by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 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
September 2020
- 79 participants
- 2102 messages
[PATCH v2 6/7] ndis.sys: Implement IOCTL_NDIS_QUERY_GLOBAL_STATS on network cards.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
dlls/ndis.sys/main.c | 82 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 82 insertions(+)
diff --git a/dlls/ndis.sys/main.c b/dlls/ndis.sys/main.c
index 7eb0c23a53..02f6c2417a 100644
--- a/dlls/ndis.sys/main.c
+++ b/dlls/ndis.sys/main.c
@@ -41,6 +41,86 @@
WINE_DEFAULT_DEBUG_CHANNEL(ndis);
+static void query_global_stats(IRP *irp, const MIB_IF_ROW2 *netdev)
+{
+ IO_STACK_LOCATION *irpsp = IoGetCurrentIrpStackLocation( irp );
+ void *response = MmGetSystemAddressForMdlSafe( irp->MdlAddress, NormalPagePriority );
+ DWORD len = irpsp->Parameters.DeviceIoControl.OutputBufferLength;
+ DWORD oid;
+
+ if (irpsp->Parameters.DeviceIoControl.InputBufferLength != sizeof(oid))
+ {
+ irp->IoStatus.u.Status = STATUS_INVALID_PARAMETER;
+ return;
+ }
+ oid = *(DWORD *)irp->AssociatedIrp.SystemBuffer;
+
+ switch (oid)
+ {
+ case OID_GEN_MEDIA_SUPPORTED:
+ case OID_GEN_MEDIA_IN_USE:
+ {
+ if (len < sizeof(NDIS_MEDIUM))
+ {
+ irp->IoStatus.u.Status = STATUS_INVALID_PARAMETER;
+ break;
+ }
+ *(NDIS_MEDIUM *)response = netdev->MediaType;
+ irp->IoStatus.Information = sizeof(netdev->MediaType);
+ irp->IoStatus.u.Status = STATUS_SUCCESS;
+ break;
+ }
+ case OID_802_3_PERMANENT_ADDRESS:
+ {
+ irp->IoStatus.Information = netdev->PhysicalAddressLength;
+ if (len < netdev->PhysicalAddressLength)
+ irp->IoStatus.u.Status = STATUS_INVALID_PARAMETER;
+ else
+ memcpy( response, netdev->PermanentPhysicalAddress, sizeof(netdev->PermanentPhysicalAddress) );
+ break;
+ }
+ case OID_802_3_CURRENT_ADDRESS:
+ {
+ irp->IoStatus.Information = netdev->PhysicalAddressLength;
+ if (len < netdev->PhysicalAddressLength)
+ irp->IoStatus.u.Status = STATUS_INVALID_PARAMETER;
+ else
+ memcpy( response, netdev->PhysicalAddress, sizeof(netdev->PhysicalAddress) );
+ break;
+
+ }
+ default:
+ FIXME( "Unsupported OID %x\n", oid );
+ irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
+ break;
+ }
+}
+
+static NTSTATUS WINAPI ndis_ioctl(DEVICE_OBJECT *device, IRP *irp)
+{
+ IO_STACK_LOCATION *irpsp = IoGetCurrentIrpStackLocation( irp );
+ MIB_IF_ROW2 *netdev = device->DeviceExtension;
+
+ TRACE( "ioctl %x insize %u outsize %u\n",
+ irpsp->Parameters.DeviceIoControl.IoControlCode,
+ irpsp->Parameters.DeviceIoControl.InputBufferLength,
+ irpsp->Parameters.DeviceIoControl.OutputBufferLength );
+
+ switch (irpsp->Parameters.DeviceIoControl.IoControlCode)
+ {
+ case IOCTL_NDIS_QUERY_GLOBAL_STATS:
+ query_global_stats(irp, netdev);
+ break;
+ default:
+ FIXME( "ioctl %x not supported\n", irpsp->Parameters.DeviceIoControl.IoControlCode );
+ irp->IoStatus.u.Status = STATUS_NOT_SUPPORTED;
+ break;
+ }
+
+ IoCompleteRequest( irp, IO_NO_INCREMENT );
+ return STATUS_SUCCESS;
+}
+
static void add_key(const WCHAR *guidstrW, const MIB_IF_ROW2 *netdev)
{
HKEY card_key;
@@ -111,6 +191,8 @@ NTSTATUS WINAPI DriverEntry(DRIVER_OBJECT *driver, UNICODE_STRING *path)
{
TRACE("(%p, %s)\n", driver, debugstr_w(path->Buffer));
+ driver->MajorFunction[IRP_MJ_DEVICE_CONTROL] = ndis_ioctl;
+
create_network_devices( driver );
return STATUS_SUCCESS;
--
2.25.1
Sept. 1, 2020
[PATCH v2 5/7] ndis.sys: Create network card devices.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
dlls/ndis.sys/main.c | 29 ++++++++++++++++++++++++++++-
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git a/dlls/ndis.sys/main.c b/dlls/ndis.sys/main.c
index 6dd444a657..7eb0c23a53 100644
--- a/dlls/ndis.sys/main.c
+++ b/dlls/ndis.sys/main.c
@@ -56,6 +56,32 @@ static void add_key(const WCHAR *guidstrW, const MIB_IF_ROW2 *netdev)
}
}
+static int add_device(DRIVER_OBJECT *driver, const WCHAR *guidstrW, MIB_IF_ROW2 *netdev)
+{
+ WCHAR nameW[47], linkW[51];
+ UNICODE_STRING name, link;
+ DEVICE_OBJECT *device;
+ NTSTATUS status;
+
+ swprintf( nameW, ARRAY_SIZE(nameW), L"\\Device\\%s", guidstrW );
+ RtlInitUnicodeString( &name, nameW );
+
+ swprintf( linkW, ARRAY_SIZE(linkW), L"\\DosDevices\\%s", guidstrW );
+ RtlInitUnicodeString( &link, linkW );
+
+ if (!(status = IoCreateDevice( driver, sizeof(*netdev), &name, 0, 0, FALSE, &device )))
+ status = IoCreateSymbolicLink( &link, &name );
+ if (status)
+ {
+ FIXME( "failed to create device error %x\n", status );
+ return 0;
+ }
+
+ memcpy( device->DeviceExtension, netdev, sizeof(*netdev) );
+ return 1;
+}
+
+
static void create_network_devices(DRIVER_OBJECT *driver)
{
MIB_IF_TABLE2 *table;
@@ -74,7 +100,8 @@ static void create_network_devices(DRIVER_OBJECT *driver)
guid->Data4[2], guid->Data4[3], guid->Data4[4], guid->Data4[5],
guid->Data4[6], guid->Data4[7] );
- add_key( guidstrW, &table->Table[i] );
+ if (add_device( driver, guidstrW, &table->Table[i] ))
+ add_key( guidstrW, &table->Table[i] );
}
FreeMibTable( table );
--
2.25.1
Sept. 1, 2020
[PATCH v2 4/7] ndis.sys: Create network card registry keys.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
dlls/ndis.sys/Makefile.in | 1 +
dlls/ndis.sys/main.c | 50 +++++++++++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dlls/ndis.sys/Makefile.in b/dlls/ndis.sys/Makefile.in
index fa69910f16..0d58cb0d38 100644
--- a/dlls/ndis.sys/Makefile.in
+++ b/dlls/ndis.sys/Makefile.in
@@ -1,4 +1,5 @@
MODULE = ndis.sys
+IMPORTS = advapi32 ntoskrnl iphlpapi
EXTRADLLFLAGS = -Wl,--subsystem,native -mno-cygwin
C_SRCS = \
diff --git a/dlls/ndis.sys/main.c b/dlls/ndis.sys/main.c
index 90c8c3cc88..6dd444a657 100644
--- a/dlls/ndis.sys/main.c
+++ b/dlls/ndis.sys/main.c
@@ -21,21 +21,71 @@
#include <stdarg.h>
+#define NONAMELESSUNION
#include "ntstatus.h"
#define WIN32_NO_STATUS
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
+#include "winioctl.h"
+#include "ntddndis.h"
#include "ddk/wdm.h"
#include "ddk/ndis.h"
+#include "winreg.h"
#include "wine/debug.h"
+#include <winsock2.h>
+#include <ws2ipdef.h>
+#include <iphlpapi.h>
+#include <netioapi.h>
+
WINE_DEFAULT_DEBUG_CHANNEL(ndis);
+static void add_key(const WCHAR *guidstrW, const MIB_IF_ROW2 *netdev)
+{
+ HKEY card_key;
+ WCHAR keynameW[100];
+
+ swprintf( keynameW, ARRAY_SIZE(keynameW), L"Software\\Microsoft\\Windows NT\\CurrentVersion\\NetworkCards\\%d", netdev->InterfaceIndex );
+ if (RegCreateKeyExW( HKEY_LOCAL_MACHINE, keynameW, 0, NULL,
+ REG_OPTION_VOLATILE, KEY_ALL_ACCESS, NULL, &card_key, NULL ) == ERROR_SUCCESS)
+ {
+ RegSetValueExW( card_key, L"Description", 0, REG_SZ, (BYTE *)netdev->Description, (lstrlenW(netdev->Description) + 1) * sizeof(WCHAR) );
+ RegSetValueExW( card_key, L"ServiceName", 0, REG_SZ, (BYTE *)guidstrW, (lstrlenW(guidstrW) + 1) * sizeof(WCHAR) );
+ RegCloseKey( card_key );
+ }
+}
+
+static void create_network_devices(DRIVER_OBJECT *driver)
+{
+ MIB_IF_TABLE2 *table;
+ ULONG i;
+
+ if (GetIfTable2( &table ) != NO_ERROR)
+ return;
+
+ for (i = 0; i < table->NumEntries; i++)
+ {
+ GUID *guid = &table->Table[i].InterfaceGuid;
+ WCHAR guidstrW[39];
+
+ swprintf( guidstrW, ARRAY_SIZE(guidstrW), L"{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
+ guid->Data1, guid->Data2, guid->Data3, guid->Data4[0], guid->Data4[1],
+ guid->Data4[2], guid->Data4[3], guid->Data4[4], guid->Data4[5],
+ guid->Data4[6], guid->Data4[7] );
+
+ add_key( guidstrW, &table->Table[i] );
+ }
+
+ FreeMibTable( table );
+}
+
NTSTATUS WINAPI DriverEntry(DRIVER_OBJECT *driver, UNICODE_STRING *path)
{
TRACE("(%p, %s)\n", driver, debugstr_w(path->Buffer));
+ create_network_devices( driver );
+
return STATUS_SUCCESS;
}
--
2.25.1
Sept. 1, 2020
[PATCH v2 3/7] wine.inf: Create NDIS service.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
loader/wine.inf.in | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/loader/wine.inf.in b/loader/wine.inf.in
index 8777377002..cd0e7bd16f 100644
--- a/loader/wine.inf.in
+++ b/loader/wine.inf.in
@@ -163,6 +163,7 @@ AddService=FontCache,0,FontCacheService
AddService=Schedule,0,TaskSchedulerService
AddService=Winmgmt,0,WinmgmtService
AddService=wuauserv,0,wuauService
+AddService=NDIS,0x800,NDISService
[DefaultInstall.NT.Services]
AddService=BITS,0,BITSService
@@ -180,6 +181,7 @@ AddService=FontCache,0,FontCacheService
AddService=Schedule,0,TaskSchedulerService
AddService=Winmgmt,0,WinmgmtService
AddService=wuauserv,0,wuauService
+AddService=NDIS,0x800,NDISService
[DefaultInstall.ntamd64.Services]
AddService=BITS,0,BITSService
@@ -197,6 +199,7 @@ AddService=FontCache,0,FontCacheService
AddService=Schedule,0,TaskSchedulerService
AddService=Winmgmt,0,WinmgmtService
AddService=wuauserv,0,wuauService
+AddService=NDIS,0x800,NDISService
[DefaultInstall.ntarm64.Services]
AddService=BITS,0,BITSService
@@ -214,6 +217,7 @@ AddService=FontCache,0,FontCacheService
AddService=Schedule,0,TaskSchedulerService
AddService=Winmgmt,0,WinmgmtService
AddService=wuauserv,0,wuauService
+AddService=NDIS,0x800,NDISService
[Strings]
MciExtStr="Software\Microsoft\Windows NT\CurrentVersion\MCI Extensions"
@@ -3628,6 +3632,16 @@ ServiceBinary="%12%\mountmgr.sys"
ServiceType=1
StartType=2
ErrorControl=1
+LoadOrderGroup="System Bus Extender"
+
+[NDISService]
+Description="NDIS service"
+DisplayName="NDIS"
+ServiceBinary="%12%\ndis.sys"
+ServiceType=1
+StartType=2
+ErrorControl=1
+LoadOrderGroup="System Bus Extender"
[RpcSsService]
Description="RPC service"
--
2.25.1
Sept. 1, 2020
[PATCH v2 2/7] iphlpapi: Make the interface guids more unique.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
dlls/iphlpapi/iphlpapi_main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index ddde081950..81c4992ac7 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -3207,6 +3207,7 @@ DWORD WINAPI ConvertInterfaceLuidToGuid(const NET_LUID *luid, GUID *guid)
memset( guid, 0, sizeof(*guid) );
guid->Data1 = luid->Info.NetLuidIndex;
+ memcpy( guid->Data4+2, "NetDev", 6 );
return NO_ERROR;
}
--
2.25.1
Sept. 1, 2020
[PATCH v2 1/7] iphlpapi: Unify conversions to interface guid.
by Isabella Bosia
Signed-off-by: Isabella Bosia <ibosia(a)codeweavers.com>
---
dlls/iphlpapi/iphlpapi_main.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/dlls/iphlpapi/iphlpapi_main.c b/dlls/iphlpapi/iphlpapi_main.c
index c039086229..ddde081950 100644
--- a/dlls/iphlpapi/iphlpapi_main.c
+++ b/dlls/iphlpapi/iphlpapi_main.c
@@ -1008,12 +1008,19 @@ static ULONG adapterAddressesFromIndex(ULONG family, ULONG flags, IF_INDEX index
WCHAR *dst;
DWORD buflen, type;
INTERNAL_IF_OPER_STATUS status;
+ NET_LUID luid;
+ GUID guid;
memset(aa, 0, sizeof(IP_ADAPTER_ADDRESSES));
aa->u.s.Length = sizeof(IP_ADAPTER_ADDRESSES);
aa->u.s.IfIndex = index;
- sprintf(ptr, "{%08x-0000-0000-0000-000000000000}", index);
+ ConvertInterfaceIndexToLuid(index, &luid);
+ ConvertInterfaceLuidToGuid(&luid, &guid);
+ sprintf(ptr, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
+ guid.Data1, guid.Data2, guid.Data3, guid.Data4[0], guid.Data4[1],
+ guid.Data4[2], guid.Data4[3], guid.Data4[4], guid.Data4[5],
+ guid.Data4[6], guid.Data4[7]);
aa->AdapterName = ptr;
ptr += 39;
@@ -1786,7 +1793,7 @@ DWORD WINAPI GetIfEntry2( MIB_IF_ROW2 *row2 )
row2->InterfaceLuid.Info.NetLuidIndex = row.dwIndex;
row2->InterfaceLuid.Info.IfType = row.dwType;
row2->InterfaceIndex = row.dwIndex;
- row2->InterfaceGuid.Data1 = row.dwIndex;
+ ConvertInterfaceLuidToGuid( &row2->InterfaceLuid, &row2->InterfaceGuid );
row2->Type = row.dwType;
row2->Mtu = row.dwMtu;
MultiByteToWideChar( CP_UNIXCP, 0, (const char *)row.bDescr, -1, row2->Description, len );
--
2.25.1
Sept. 1, 2020
[PATCH v2 0/7] NDIS patchset
by Isabella Bosia
I think I've addressed all the issues that were mentioned.
I've moved the test from iphlpapi to ndis.sys. I think I'm using the
LoadOrderGroup correctly and it doesn't create any extra processes.
I also removed the creation of the symlink with DefineDosDevice. It was
inspired by some code I reversed in a third party dll, which the patches
are trying to address.
v1: https://www.winehq.org/pipermail/wine-devel/2020-August/172383.html
Isabella Bosia (7):
iphlpapi: Unify conversions to interface guid.
iphlpapi: Make the interface guids more unique.
wine.inf: Create NDIS service.
ndis.sys: Create network card registry keys.
ndis.sys: Create network card devices.
ndis.sys: Implement IOCTL_NDIS_QUERY_GLOBAL_STATS on network cards.
ndis.sys/tests: Add tests for ndis ioctls.
configure.ac | 1 +
dlls/iphlpapi/iphlpapi_main.c | 12 ++-
dlls/ndis.sys/Makefile.in | 1 +
dlls/ndis.sys/main.c | 159 ++++++++++++++++++++++++++++++++
dlls/ndis.sys/tests/Makefile.in | 5 +
dlls/ndis.sys/tests/ndis.c | 146 +++++++++++++++++++++++++++++
loader/wine.inf.in | 14 +++
7 files changed, 336 insertions(+), 2 deletions(-)
create mode 100644 dlls/ndis.sys/tests/Makefile.in
create mode 100644 dlls/ndis.sys/tests/ndis.c
--
2.25.1
Sept. 1, 2020
Re: [PATCH 2/4] kernel32: Implement GetXStateFeaturesMask().
by Marvin
Hi,
While running your changed tests, I think I found new failures.
Being a bot and all I'm not very good at pattern recognition, so I might be
wrong, but could you please double-check?
Full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=77832
Your paranoid android.
=== debiant (32 bit report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa90 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 136b0 / 1361e
loader.c:3946: Test failed: ntdll.dll:5: wrong OptionalHeader.DataDirectory[i].Size 3b54 / 3b4c
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 8
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
=== debiant (32 bit Chinese:China report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa90 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 136b0 / 1361e
loader.c:3946: Test failed: ntdll.dll:5: wrong OptionalHeader.DataDirectory[i].Size 3b54 / 3b4c
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 8
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
=== debiant (32 bit WoW report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa90 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 136b0 / 1361e
loader.c:3946: Test failed: ntdll.dll:5: wrong OptionalHeader.DataDirectory[i].Size 3b54 / 3b4c
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 8
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
=== debiant (64 bit WoW report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa90 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 136b0 / 1361e
loader.c:3946: Test failed: ntdll.dll:5: wrong OptionalHeader.DataDirectory[i].Size 3b54 / 3b4c
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 8
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
Sept. 1, 2020
Re: [PATCH 1/4] kernel32: Implement SetXStateFeaturesMask().
by Marvin
Hi,
While running your changed tests, I think I found new failures.
Being a bot and all I'm not very good at pattern recognition, so I might be
wrong, but could you please double-check?
Full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=77831
Your paranoid android.
=== debiant (32 bit report) ===
kernel32:
console.c:372: Test failed: At (77,0): expecting char 'd'/64 got 'a'/61
console.c:469: Test failed: At (0,3): expecting char 'd'/64 got 'f'/66
console.c:473: Test failed: Win9x/WinMe changes attribs for '\n' up to 'f'
console.c:478: Test failed: At (0,4): expecting char 'f'/66 got ' '/20
console.c:478: Test failed: At (0,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (1,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (2,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (3,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (4,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (5,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (6,4): expecting attr 0012 got 0007
console.c:480: Test failed: At (7,4): expecting attr 0012 got 0007
console.c:481: Test failed: At (8,4): expecting char 'g'/67 got ' '/20
console.c:481: Test failed: At (8,4): expecting attr 0012 got 0007
console.c:484: Test failed: Expected cursor at (9,4), got (9,3)
console.c:549: Test failed: At (0,25): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (0,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (1,25): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (1,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (2,25): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (2,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (3,25): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (3,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (4,25): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (4,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (5,25): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (5,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (6,25): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (6,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (7,25): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (7,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (8,25): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (8,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (9,25): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (9,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (10,25): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (10,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (11,25): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (11,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (12,25): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (12,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (13,25): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (13,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (14,25): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (14,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (15,25): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (15,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (16,25): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (16,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (17,25): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (17,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (18,25): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (18,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (19,25): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (19,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (20,25): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (20,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (21,25): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (21,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (22,25): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (22,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (23,25): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (23,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (24,25): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (24,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (25,25): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (25,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (26,25): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (26,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (27,25): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (27,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (28,25): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (28,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (29,25): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (29,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (30,25): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (30,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (31,25): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (31,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (32,25): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (32,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (33,25): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (33,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (34,25): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (34,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (35,25): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (35,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (36,25): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (36,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (37,25): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (37,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (38,25): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (38,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (39,25): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (39,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (40,25): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (40,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (41,25): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (41,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (42,25): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (42,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (43,25): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (43,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (44,25): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (44,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (45,25): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (45,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (46,25): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (46,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (47,25): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (47,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (48,25): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (48,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (49,25): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (49,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (50,25): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (50,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (51,25): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (51,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (52,25): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (52,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (53,25): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (53,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (54,25): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (54,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (55,25): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (55,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (56,25): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (56,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (57,25): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (57,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (58,25): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (58,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (59,25): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (59,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (60,25): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (60,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (61,25): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (61,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (62,25): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (62,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (63,25): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (63,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (64,25): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (64,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (65,25): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (65,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (66,25): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (66,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (67,25): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (67,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (68,25): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (68,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (69,25): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (69,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (70,25): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (70,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (71,25): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (71,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (72,25): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (72,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (73,25): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (73,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (74,25): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (74,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (75,25): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (75,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (76,25): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (76,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (77,25): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (77,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (78,25): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (78,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (79,25): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (79,25): expecting attr 0007 got 0007
console.c:549: Test failed: At (0,26): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (0,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (1,26): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (1,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (2,26): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (2,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (3,26): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (3,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (4,26): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (4,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (5,26): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (5,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (6,26): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (6,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (7,26): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (7,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (8,26): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (8,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (9,26): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (9,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (10,26): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (10,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (11,26): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (11,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (12,26): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (12,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (13,26): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (13,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (14,26): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (14,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (15,26): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (15,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (16,26): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (16,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (17,26): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (17,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (18,26): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (18,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (19,26): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (19,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (20,26): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (20,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (21,26): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (21,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (22,26): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (22,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (23,26): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (23,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (24,26): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (24,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (25,26): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (25,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (26,26): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (26,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (27,26): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (27,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (28,26): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (28,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (29,26): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (29,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (30,26): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (30,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (31,26): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (31,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (32,26): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (32,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (33,26): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (33,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (34,26): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (34,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (35,26): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (35,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (36,26): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (36,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (37,26): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (37,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (38,26): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (38,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (39,26): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (39,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (40,26): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (40,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (41,26): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (41,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (42,26): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (42,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (43,26): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (43,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (44,26): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (44,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (45,26): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (45,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (46,26): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (46,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (47,26): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (47,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (48,26): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (48,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (49,26): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (49,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (50,26): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (50,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (51,26): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (51,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (52,26): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (52,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (53,26): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (53,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (54,26): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (54,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (55,26): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (55,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (56,26): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (56,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (57,26): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (57,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (58,26): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (58,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (59,26): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (59,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (60,26): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (60,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (61,26): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (61,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (62,26): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (62,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (63,26): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (63,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (64,26): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (64,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (65,26): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (65,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (66,26): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (66,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (67,26): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (67,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (68,26): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (68,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (69,26): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (69,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (70,26): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (70,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (71,26): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (71,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (72,26): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (72,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (73,26): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (73,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (74,26): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (74,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (75,26): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (75,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (76,26): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (76,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (77,26): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (77,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (78,26): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (78,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (79,26): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (79,26): expecting attr 0007 got 0007
console.c:549: Test failed: At (0,27): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (0,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (1,27): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (1,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (2,27): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (2,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (3,27): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (3,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (4,27): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (4,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (5,27): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (5,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (6,27): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (6,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (7,27): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (7,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (8,27): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (8,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (9,27): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (9,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (10,27): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (10,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (11,27): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (11,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (12,27): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (12,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (13,27): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (13,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (14,27): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (14,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (15,27): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (15,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (16,27): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (16,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (17,27): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (17,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (18,27): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (18,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (19,27): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (19,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (20,27): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (20,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (21,27): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (21,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (22,27): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (22,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (23,27): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (23,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (24,27): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (24,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (25,27): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (25,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (26,27): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (26,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (27,27): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (27,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (28,27): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (28,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (29,27): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (29,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (30,27): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (30,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (31,27): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (31,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (32,27): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (32,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (33,27): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (33,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (34,27): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (34,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (35,27): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (35,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (36,27): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (36,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (37,27): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (37,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (38,27): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (38,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (39,27): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (39,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (40,27): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (40,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (41,27): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (41,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (42,27): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (42,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (43,27): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (43,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (44,27): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (44,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (45,27): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (45,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (46,27): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (46,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (47,27): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (47,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (48,27): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (48,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (49,27): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (49,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (50,27): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (50,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (51,27): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (51,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (52,27): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (52,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (53,27): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (53,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (54,27): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (54,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (55,27): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (55,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (56,27): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (56,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (57,27): expecting char 'K'/4b got 'E'/45
console.c:549: Test failed: At (57,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (58,27): expecting char 'L'/4c got 'E'/45
console.c:549: Test failed: At (58,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (59,27): expecting char 'M'/4d got 'E'/45
console.c:549: Test failed: At (59,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (60,27): expecting char 'N'/4e got 'E'/45
console.c:549: Test failed: At (60,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (61,27): expecting char 'O'/4f got 'E'/45
console.c:549: Test failed: At (61,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (62,27): expecting char 'P'/50 got 'E'/45
console.c:549: Test failed: At (62,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (63,27): expecting char 'Q'/51 got 'E'/45
console.c:549: Test failed: At (63,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (64,27): expecting char 'R'/52 got 'E'/45
console.c:549: Test failed: At (64,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (65,27): expecting char 'S'/53 got 'E'/45
console.c:549: Test failed: At (65,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (66,27): expecting char 'T'/54 got 'E'/45
console.c:549: Test failed: At (66,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (67,27): expecting char 'U'/55 got 'E'/45
console.c:549: Test failed: At (67,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (68,27): expecting char 'V'/56 got 'E'/45
console.c:549: Test failed: At (68,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (69,27): expecting char 'W'/57 got 'E'/45
console.c:549: Test failed: At (69,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (70,27): expecting char 'A'/41 got 'E'/45
console.c:549: Test failed: At (70,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (71,27): expecting char 'B'/42 got 'E'/45
console.c:549: Test failed: At (71,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (72,27): expecting char 'C'/43 got 'E'/45
console.c:549: Test failed: At (72,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (73,27): expecting char 'D'/44 got 'E'/45
console.c:549: Test failed: At (73,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (74,27): expecting char 'E'/45 got 'E'/45
console.c:549: Test failed: At (74,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (75,27): expecting char 'F'/46 got 'E'/45
console.c:549: Test failed: At (75,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (76,27): expecting char 'G'/47 got 'E'/45
console.c:549: Test failed: At (76,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (77,27): expecting char 'H'/48 got 'E'/45
console.c:549: Test failed: At (77,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (78,27): expecting char 'I'/49 got 'E'/45
console.c:549: Test failed: At (78,27): expecting attr 0007 got 0007
console.c:549: Test failed: At (79,27): expecting char 'J'/4a got 'E'/45
console.c:549: Test failed: At (79,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (0,25): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (0,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (1,25): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (1,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (2,25): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (2,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (3,25): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (3,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (4,25): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (4,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (5,25): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (5,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (6,25): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (6,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (7,25): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (7,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (8,25): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (8,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (9,25): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (9,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (10,25): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (10,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (11,25): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (11,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (12,25): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (12,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (13,25): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (13,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (14,25): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (14,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (15,25): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (15,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (16,25): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (16,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (17,25): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (17,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (18,25): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (18,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (19,25): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (19,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (20,25): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (20,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (21,25): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (21,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (22,25): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (22,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (23,25): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (23,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (24,25): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (24,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (25,25): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (25,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (26,25): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (26,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (27,25): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (27,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (28,25): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (28,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (29,25): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (29,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (30,25): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (30,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (31,25): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (31,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (32,25): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (32,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (33,25): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (33,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (34,25): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (34,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (35,25): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (35,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (36,25): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (36,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (37,25): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (37,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (38,25): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (38,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (39,25): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (39,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (40,25): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (40,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (41,25): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (41,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (42,25): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (42,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (43,25): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (43,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (44,25): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (44,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (45,25): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (45,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (46,25): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (46,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (47,25): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (47,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (48,25): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (48,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (49,25): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (49,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (50,25): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (50,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (51,25): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (51,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (52,25): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (52,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (53,25): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (53,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (54,25): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (54,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (55,25): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (55,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (56,25): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (56,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (57,25): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (57,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (58,25): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (58,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (59,25): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (59,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (60,25): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (60,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (61,25): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (61,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (62,25): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (62,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (63,25): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (63,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (64,25): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (64,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (65,25): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (65,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (66,25): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (66,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (67,25): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (67,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (68,25): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (68,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (69,25): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (69,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (70,25): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (70,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (71,25): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (71,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (72,25): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (72,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (73,25): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (73,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (74,25): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (74,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (75,25): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (75,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (76,25): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (76,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (77,25): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (77,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (78,25): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (78,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (79,25): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (79,25): expecting attr 0007 got 0007
console.c:583: Test failed: At (0,26): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (0,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (1,26): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (1,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (2,26): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (2,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (3,26): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (3,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (4,26): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (4,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (5,26): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (5,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (6,26): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (6,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (7,26): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (7,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (8,26): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (8,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (9,26): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (9,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (10,26): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (10,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (11,26): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (11,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (12,26): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (12,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (13,26): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (13,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (14,26): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (14,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (15,26): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (15,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (16,26): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (16,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (17,26): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (17,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (18,26): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (18,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (19,26): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (19,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (20,26): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (20,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (21,26): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (21,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (22,26): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (22,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (23,26): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (23,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (24,26): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (24,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (25,26): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (25,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (26,26): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (26,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (27,26): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (27,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (28,26): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (28,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (29,26): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (29,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (30,26): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (30,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (31,26): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (31,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (32,26): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (32,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (33,26): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (33,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (34,26): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (34,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (35,26): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (35,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (36,26): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (36,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (37,26): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (37,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (38,26): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (38,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (39,26): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (39,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (40,26): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (40,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (41,26): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (41,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (42,26): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (42,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (43,26): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (43,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (44,26): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (44,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (45,26): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (45,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (46,26): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (46,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (47,26): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (47,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (48,26): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (48,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (49,26): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (49,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (50,26): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (50,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (51,26): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (51,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (52,26): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (52,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (53,26): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (53,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (54,26): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (54,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (55,26): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (55,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (56,26): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (56,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (57,26): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (57,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (58,26): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (58,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (59,26): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (59,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (60,26): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (60,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (61,26): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (61,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (62,26): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (62,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (63,26): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (63,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (64,26): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (64,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (65,26): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (65,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (66,26): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (66,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (67,26): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (67,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (68,26): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (68,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (69,26): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (69,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (70,26): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (70,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (71,26): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (71,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (72,26): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (72,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (73,26): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (73,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (74,26): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (74,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (75,26): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (75,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (76,26): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (76,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (77,26): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (77,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (78,26): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (78,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (79,26): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (79,26): expecting attr 0007 got 0007
console.c:583: Test failed: At (0,27): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (0,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (1,27): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (1,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (2,27): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (2,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (3,27): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (3,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (4,27): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (4,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (5,27): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (5,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (6,27): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (6,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (7,27): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (7,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (8,27): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (8,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (9,27): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (9,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (10,27): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (10,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (11,27): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (11,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (12,27): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (12,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (13,27): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (13,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (14,27): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (14,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (15,27): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (15,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (16,27): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (16,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (17,27): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (17,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (18,27): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (18,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (19,27): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (19,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (20,27): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (20,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (21,27): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (21,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (22,27): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (22,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (23,27): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (23,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (24,27): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (24,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (25,27): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (25,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (26,27): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (26,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (27,27): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (27,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (28,27): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (28,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (29,27): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (29,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (30,27): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (30,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (31,27): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (31,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (32,27): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (32,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (33,27): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (33,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (34,27): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (34,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (35,27): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (35,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (36,27): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (36,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (37,27): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (37,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (38,27): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (38,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (39,27): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (39,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (40,27): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (40,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (41,27): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (41,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (42,27): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (42,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (43,27): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (43,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (44,27): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (44,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (45,27): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (45,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (46,27): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (46,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (47,27): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (47,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (48,27): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (48,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (49,27): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (49,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (50,27): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (50,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (51,27): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (51,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (52,27): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (52,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (53,27): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (53,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (54,27): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (54,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (55,27): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (55,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (56,27): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (56,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (57,27): expecting char 'K'/4b got 'E'/45
console.c:583: Test failed: At (57,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (58,27): expecting char 'L'/4c got 'E'/45
console.c:583: Test failed: At (58,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (59,27): expecting char 'M'/4d got 'E'/45
console.c:583: Test failed: At (59,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (60,27): expecting char 'N'/4e got 'E'/45
console.c:583: Test failed: At (60,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (61,27): expecting char 'O'/4f got 'E'/45
console.c:583: Test failed: At (61,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (62,27): expecting char 'P'/50 got 'E'/45
console.c:583: Test failed: At (62,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (63,27): expecting char 'Q'/51 got 'E'/45
console.c:583: Test failed: At (63,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (64,27): expecting char 'R'/52 got 'E'/45
console.c:583: Test failed: At (64,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (65,27): expecting char 'S'/53 got 'E'/45
console.c:583: Test failed: At (65,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (66,27): expecting char 'T'/54 got 'E'/45
console.c:583: Test failed: At (66,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (67,27): expecting char 'U'/55 got 'E'/45
console.c:583: Test failed: At (67,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (68,27): expecting char 'V'/56 got 'E'/45
console.c:583: Test failed: At (68,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (69,27): expecting char 'W'/57 got 'E'/45
console.c:583: Test failed: At (69,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (70,27): expecting char 'A'/41 got 'E'/45
console.c:583: Test failed: At (70,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (71,27): expecting char 'B'/42 got 'E'/45
console.c:583: Test failed: At (71,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (72,27): expecting char 'C'/43 got 'E'/45
console.c:583: Test failed: At (72,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (73,27): expecting char 'D'/44 got 'E'/45
console.c:583: Test failed: At (73,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (74,27): expecting char 'E'/45 got 'E'/45
console.c:583: Test failed: At (74,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (75,27): expecting char 'F'/46 got 'E'/45
console.c:583: Test failed: At (75,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (76,27): expecting char 'G'/47 got 'E'/45
console.c:583: Test failed: At (76,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (77,27): expecting char 'H'/48 got 'E'/45
console.c:583: Test failed: At (77,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (78,27): expecting char 'I'/49 got 'E'/45
console.c:583: Test failed: At (78,27): expecting attr 0007 got 0007
console.c:583: Test failed: At (79,27): expecting char 'J'/4a got 'E'/45
console.c:583: Test failed: At (79,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (0,25): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (0,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (1,25): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (1,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (2,25): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (2,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (3,25): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (3,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (4,25): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (4,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (5,25): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (5,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (6,25): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (6,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (7,25): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (7,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (8,25): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (8,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (9,25): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (9,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (10,25): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (10,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (11,25): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (11,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (12,25): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (12,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (13,25): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (13,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (14,25): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (14,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (15,25): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (15,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (16,25): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (16,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (17,25): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (17,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (18,25): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (18,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (19,25): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (19,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (20,25): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (20,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (21,25): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (21,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (22,25): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (22,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (23,25): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (23,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (24,25): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (24,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (25,25): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (25,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (26,25): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (26,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (27,25): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (27,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (28,25): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (28,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (29,25): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (29,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (30,25): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (30,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (31,25): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (31,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (32,25): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (32,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (33,25): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (33,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (34,25): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (34,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (35,25): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (35,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (36,25): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (36,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (37,25): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (37,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (38,25): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (38,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (39,25): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (39,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (40,25): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (40,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (41,25): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (41,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (42,25): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (42,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (43,25): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (43,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (44,25): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (44,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (45,25): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (45,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (46,25): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (46,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (47,25): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (47,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (48,25): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (48,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (49,25): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (49,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (50,25): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (50,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (51,25): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (51,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (52,25): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (52,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (53,25): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (53,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (54,25): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (54,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (55,25): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (55,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (56,25): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (56,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (57,25): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (57,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (58,25): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (58,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (59,25): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (59,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (60,25): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (60,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (61,25): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (61,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (62,25): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (62,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (63,25): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (63,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (64,25): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (64,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (65,25): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (65,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (66,25): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (66,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (67,25): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (67,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (68,25): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (68,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (69,25): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (69,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (70,25): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (70,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (71,25): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (71,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (72,25): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (72,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (73,25): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (73,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (74,25): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (74,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (75,25): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (75,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (76,25): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (76,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (77,25): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (77,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (78,25): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (78,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (79,25): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (79,25): expecting attr 0007 got 0007
console.c:620: Test failed: At (0,26): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (0,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (1,26): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (1,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (2,26): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (2,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (3,26): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (3,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (4,26): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (4,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (5,26): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (5,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (6,26): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (6,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (7,26): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (7,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (8,26): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (8,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (9,26): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (9,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (10,26): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (10,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (11,26): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (11,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (12,26): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (12,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (13,26): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (13,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (14,26): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (14,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (15,26): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (15,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (16,26): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (16,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (17,26): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (17,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (18,26): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (18,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (19,26): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (19,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (20,26): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (20,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (21,26): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (21,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (22,26): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (22,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (23,26): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (23,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (24,26): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (24,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (25,26): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (25,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (26,26): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (26,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (27,26): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (27,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (28,26): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (28,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (29,26): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (29,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (30,26): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (30,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (31,26): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (31,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (32,26): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (32,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (33,26): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (33,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (34,26): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (34,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (35,26): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (35,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (36,26): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (36,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (37,26): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (37,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (38,26): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (38,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (39,26): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (39,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (40,26): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (40,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (41,26): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (41,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (42,26): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (42,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (43,26): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (43,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (44,26): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (44,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (45,26): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (45,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (46,26): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (46,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (47,26): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (47,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (48,26): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (48,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (49,26): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (49,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (50,26): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (50,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (51,26): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (51,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (52,26): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (52,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (53,26): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (53,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (54,26): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (54,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (55,26): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (55,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (56,26): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (56,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (57,26): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (57,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (58,26): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (58,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (59,26): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (59,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (60,26): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (60,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (61,26): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (61,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (62,26): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (62,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (63,26): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (63,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (64,26): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (64,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (65,26): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (65,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (66,26): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (66,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (67,26): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (67,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (68,26): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (68,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (69,26): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (69,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (70,26): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (70,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (71,26): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (71,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (72,26): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (72,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (73,26): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (73,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (74,26): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (74,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (75,26): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (75,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (76,26): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (76,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (77,26): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (77,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (78,26): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (78,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (79,26): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (79,26): expecting attr 0007 got 0007
console.c:620: Test failed: At (0,27): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (0,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (1,27): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (1,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (2,27): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (2,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (3,27): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (3,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (4,27): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (4,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (5,27): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (5,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (6,27): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (6,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (7,27): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (7,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (8,27): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (8,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (9,27): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (9,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (10,27): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (10,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (11,27): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (11,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (12,27): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (12,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (13,27): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (13,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (14,27): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (14,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (15,27): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (15,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (16,27): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (16,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (17,27): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (17,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (18,27): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (18,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (19,27): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (19,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (20,27): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (20,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (21,27): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (21,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (22,27): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (22,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (23,27): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (23,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (24,27): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (24,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (25,27): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (25,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (26,27): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (26,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (27,27): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (27,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (28,27): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (28,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (29,27): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (29,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (30,27): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (30,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (31,27): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (31,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (32,27): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (32,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (33,27): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (33,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (34,27): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (34,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (35,27): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (35,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (36,27): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (36,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (37,27): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (37,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (38,27): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (38,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (39,27): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (39,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (40,27): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (40,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (41,27): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (41,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (42,27): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (42,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (43,27): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (43,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (44,27): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (44,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (45,27): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (45,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (46,27): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (46,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (47,27): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (47,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (48,27): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (48,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (49,27): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (49,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (50,27): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (50,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (51,27): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (51,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (52,27): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (52,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (53,27): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (53,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (54,27): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (54,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (55,27): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (55,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (56,27): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (56,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (57,27): expecting char 'K'/4b got 'E'/45
console.c:620: Test failed: At (57,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (58,27): expecting char 'L'/4c got 'E'/45
console.c:620: Test failed: At (58,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (59,27): expecting char 'M'/4d got 'E'/45
console.c:620: Test failed: At (59,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (60,27): expecting char 'N'/4e got 'E'/45
console.c:620: Test failed: At (60,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (61,27): expecting char 'O'/4f got 'E'/45
console.c:620: Test failed: At (61,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (62,27): expecting char 'P'/50 got 'E'/45
console.c:620: Test failed: At (62,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (63,27): expecting char 'Q'/51 got 'E'/45
console.c:620: Test failed: At (63,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (64,27): expecting char 'R'/52 got 'E'/45
console.c:620: Test failed: At (64,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (65,27): expecting char 'S'/53 got 'E'/45
console.c:620: Test failed: At (65,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (66,27): expecting char 'T'/54 got 'E'/45
console.c:620: Test failed: At (66,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (67,27): expecting char 'U'/55 got 'E'/45
console.c:620: Test failed: At (67,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (68,27): expecting char 'V'/56 got 'E'/45
console.c:620: Test failed: At (68,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (69,27): expecting char 'W'/57 got 'E'/45
console.c:620: Test failed: At (69,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (70,27): expecting char 'A'/41 got 'E'/45
console.c:620: Test failed: At (70,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (71,27): expecting char 'B'/42 got 'E'/45
console.c:620: Test failed: At (71,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (72,27): expecting char 'C'/43 got 'E'/45
console.c:620: Test failed: At (72,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (73,27): expecting char 'D'/44 got 'E'/45
console.c:620: Test failed: At (73,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (74,27): expecting char 'E'/45 got 'E'/45
console.c:620: Test failed: At (74,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (75,27): expecting char 'F'/46 got 'E'/45
console.c:620: Test failed: At (75,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (76,27): expecting char 'G'/47 got 'E'/45
console.c:620: Test failed: At (76,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (77,27): expecting char 'H'/48 got 'E'/45
console.c:620: Test failed: At (77,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (78,27): expecting char 'I'/49 got 'E'/45
console.c:620: Test failed: At (78,27): expecting attr 0007 got 0007
console.c:620: Test failed: At (79,27): expecting char 'J'/4a got 'E'/45
console.c:620: Test failed: At (79,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (0,25): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (0,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (1,25): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (1,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (2,25): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (2,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (3,25): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (3,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (4,25): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (4,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (5,25): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (5,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (6,25): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (6,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (7,25): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (7,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (8,25): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (8,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (9,25): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (9,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (10,25): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (10,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (11,25): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (11,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (12,25): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (12,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (13,25): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (13,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (14,25): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (14,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (15,25): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (15,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (16,25): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (16,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (17,25): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (17,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (18,25): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (18,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (19,25): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (19,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (20,25): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (20,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (21,25): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (21,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (22,25): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (22,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (23,25): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (23,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (24,25): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (24,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (25,25): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (25,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (26,25): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (26,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (27,25): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (27,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (28,25): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (28,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (29,25): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (29,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (30,25): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (30,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (31,25): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (31,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (32,25): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (32,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (33,25): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (33,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (34,25): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (34,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (35,25): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (35,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (36,25): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (36,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (37,25): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (37,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (38,25): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (38,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (39,25): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (39,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (40,25): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (40,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (41,25): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (41,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (42,25): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (42,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (43,25): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (43,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (44,25): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (44,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (45,25): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (45,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (46,25): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (46,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (47,25): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (47,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (48,25): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (48,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (49,25): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (49,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (50,25): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (50,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (51,25): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (51,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (52,25): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (52,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (53,25): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (53,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (54,25): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (54,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (55,25): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (55,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (56,25): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (56,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (57,25): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (57,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (58,25): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (58,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (59,25): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (59,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (60,25): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (60,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (61,25): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (61,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (62,25): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (62,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (63,25): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (63,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (64,25): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (64,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (65,25): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (65,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (66,25): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (66,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (67,25): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (67,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (68,25): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (68,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (69,25): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (69,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (70,25): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (70,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (71,25): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (71,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (72,25): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (72,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (73,25): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (73,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (74,25): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (74,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (75,25): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (75,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (76,25): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (76,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (77,25): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (77,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (78,25): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (78,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (79,25): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (79,25): expecting attr 0007 got 0007
console.c:663: Test failed: At (0,26): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (0,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (1,26): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (1,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (2,26): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (2,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (3,26): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (3,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (4,26): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (4,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (5,26): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (5,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (6,26): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (6,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (7,26): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (7,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (8,26): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (8,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (9,26): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (9,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (10,26): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (10,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (11,26): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (11,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (12,26): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (12,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (13,26): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (13,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (14,26): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (14,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (15,26): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (15,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (16,26): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (16,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (17,26): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (17,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (18,26): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (18,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (19,26): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (19,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (20,26): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (20,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (21,26): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (21,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (22,26): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (22,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (23,26): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (23,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (24,26): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (24,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (25,26): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (25,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (26,26): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (26,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (27,26): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (27,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (28,26): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (28,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (29,26): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (29,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (30,26): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (30,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (31,26): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (31,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (32,26): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (32,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (33,26): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (33,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (34,26): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (34,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (35,26): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (35,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (36,26): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (36,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (37,26): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (37,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (38,26): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (38,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (39,26): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (39,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (40,26): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (40,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (41,26): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (41,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (42,26): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (42,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (43,26): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (43,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (44,26): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (44,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (45,26): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (45,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (46,26): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (46,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (47,26): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (47,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (48,26): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (48,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (49,26): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (49,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (50,26): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (50,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (51,26): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (51,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (52,26): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (52,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (53,26): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (53,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (54,26): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (54,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (55,26): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (55,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (56,26): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (56,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (57,26): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (57,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (58,26): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (58,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (59,26): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (59,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (60,26): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (60,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (61,26): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (61,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (62,26): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (62,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (63,26): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (63,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (64,26): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (64,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (65,26): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (65,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (66,26): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (66,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (67,26): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (67,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (68,26): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (68,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (69,26): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (69,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (70,26): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (70,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (71,26): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (71,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (72,26): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (72,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (73,26): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (73,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (74,26): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (74,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (75,26): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (75,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (76,26): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (76,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (77,26): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (77,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (78,26): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (78,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (79,26): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (79,26): expecting attr 0007 got 0007
console.c:663: Test failed: At (0,27): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (0,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (1,27): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (1,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (2,27): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (2,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (3,27): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (3,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (4,27): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (4,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (5,27): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (5,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (6,27): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (6,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (7,27): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (7,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (8,27): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (8,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (9,27): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (9,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (10,27): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (10,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (11,27): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (11,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (12,27): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (12,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (13,27): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (13,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (14,27): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (14,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (15,27): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (15,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (16,27): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (16,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (17,27): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (17,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (18,27): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (18,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (19,27): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (19,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (20,27): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (20,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (21,27): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (21,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (22,27): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (22,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (23,27): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (23,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (24,27): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (24,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (25,27): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (25,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (26,27): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (26,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (27,27): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (27,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (28,27): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (28,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (29,27): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (29,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (30,27): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (30,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (31,27): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (31,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (32,27): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (32,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (33,27): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (33,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (34,27): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (34,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (35,27): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (35,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (36,27): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (36,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (37,27): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (37,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (38,27): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (38,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (39,27): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (39,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (40,27): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (40,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (41,27): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (41,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (42,27): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (42,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (43,27): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (43,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (44,27): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (44,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (45,27): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (45,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (46,27): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (46,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (47,27): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (47,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (48,27): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (48,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (49,27): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (49,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (50,27): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (50,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (51,27): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (51,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (52,27): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (52,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (53,27): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (53,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (54,27): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (54,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (55,27): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (55,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (56,27): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (56,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (57,27): expecting char 'K'/4b got 'E'/45
console.c:663: Test failed: At (57,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (58,27): expecting char 'L'/4c got 'E'/45
console.c:663: Test failed: At (58,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (59,27): expecting char 'M'/4d got 'E'/45
console.c:663: Test failed: At (59,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (60,27): expecting char 'N'/4e got 'E'/45
console.c:663: Test failed: At (60,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (61,27): expecting char 'O'/4f got 'E'/45
console.c:663: Test failed: At (61,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (62,27): expecting char 'P'/50 got 'E'/45
console.c:663: Test failed: At (62,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (63,27): expecting char 'Q'/51 got 'E'/45
console.c:663: Test failed: At (63,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (64,27): expecting char 'R'/52 got 'E'/45
console.c:663: Test failed: At (64,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (65,27): expecting char 'S'/53 got 'E'/45
console.c:663: Test failed: At (65,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (66,27): expecting char 'T'/54 got 'E'/45
console.c:663: Test failed: At (66,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (67,27): expecting char 'U'/55 got 'E'/45
console.c:663: Test failed: At (67,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (68,27): expecting char 'V'/56 got 'E'/45
console.c:663: Test failed: At (68,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (69,27): expecting char 'W'/57 got 'E'/45
console.c:663: Test failed: At (69,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (70,27): expecting char 'A'/41 got 'E'/45
console.c:663: Test failed: At (70,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (71,27): expecting char 'B'/42 got 'E'/45
console.c:663: Test failed: At (71,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (72,27): expecting char 'C'/43 got 'E'/45
console.c:663: Test failed: At (72,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (73,27): expecting char 'D'/44 got 'E'/45
console.c:663: Test failed: At (73,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (74,27): expecting char 'E'/45 got 'E'/45
console.c:663: Test failed: At (74,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (75,27): expecting char 'F'/46 got 'E'/45
console.c:663: Test failed: At (75,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (76,27): expecting char 'G'/47 got 'E'/45
console.c:663: Test failed: At (76,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (77,27): expecting char 'H'/48 got 'E'/45
console.c:663: Test failed: At (77,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (78,27): expecting char 'I'/49 got 'E'/45
console.c:663: Test failed: At (78,27): expecting attr 0007 got 0007
console.c:663: Test failed: At (79,27): expecting char 'J'/4a got 'E'/45
console.c:663: Test failed: At (79,27): expecting attr 0007 got 0007
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa50 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 13667 / 1361e
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
Report validation errors:
kernel32:console prints too much data (141991 bytes)
=== debiant (32 bit Chinese:China report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa50 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 13667 / 1361e
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
=== debiant (32 bit WoW report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa50 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 13667 / 1361e
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
=== debiant (64 bit WoW report) ===
kernel32:
loader.c:3932: Test failed: ntdll.dll:0: wrong OptionalHeader.AddressOfEntryPoint 5fa50 / 5f9f0
loader.c:3946: Test failed: ntdll.dll:0: wrong OptionalHeader.DataDirectory[i].Size 13667 / 1361e
loader.c:3952: Test failed: ntdll.dll: wrong section 0
loader.c:3952: Test failed: ntdll.dll: wrong section 2
loader.c:3952: Test failed: ntdll.dll: wrong section 5
loader.c:3952: Test failed: ntdll.dll: wrong section 10
loader.c:3952: Test failed: ntdll.dll: wrong section 11
loader.c:3952: Test failed: ntdll.dll: wrong section 12
loader.c:3952: Test failed: ntdll.dll: wrong section 13
loader.c:3952: Test failed: ntdll.dll: wrong section 14
loader.c:3952: Test failed: ntdll.dll: wrong section 15
Sept. 1, 2020
Re: [PATCH] kernel32/tests: Change file name to avoid collision with other tests.
by Marvin
Hi,
While running your changed tests, I think I found new failures.
Being a bot and all I'm not very good at pattern recognition, so I might be
wrong, but could you please double-check?
Full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=77830
Your paranoid android.
=== debiant (32 bit report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
=== debiant (32 bit French report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
=== debiant (32 bit Japanese:Japan report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
=== debiant (32 bit Chinese:China report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
=== debiant (32 bit WoW report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
=== debiant (64 bit WoW report) ===
kernel32:
profile.c:222: Test succeeded inside todo block: expected ERROR_FILE_NOT_FOUND, got 2
Sept. 1, 2020