[arm] Update tests for new memoryForElf returns.

This commit is contained in:
Kevin Quick 2018-08-10 15:47:56 -07:00
parent 454c219b27
commit 75aee53b79
No known key found for this signature in database
GPG Key ID: E6D7733599CC0A21

View File

@ -62,7 +62,7 @@ withMemory _ e k =
}
in case MM.memoryForElf options e of
Left err -> C.throwM (MemoryLoadError err)
Right (_sim, mem, _) -> k mem
Right (mem, _sym, _warn, _err) -> k mem
data ElfException = MemoryLoadError String