asmcup / runtime

Runtime and compiler for the Assembly Cup
https://asmcup.github.io
MIT License
139 stars 11 forks source link

Line end failure in decompiler test #157

Closed MLanghof closed 7 years ago

MLanghof commented 7 years ago
decompiler.dump(0xff, "blabla");
assertEquals("ff: blabla\n", out.toString("UTF-8"));

This test fails for me locally. Using the following string instead, it succeeds: ff: "blabla\r\n".

The same failure happens in the other decompiler test. Yay for age-old line end incompatibilities.

SiebelsTim commented 7 years ago

Haha yey. I think I broke this in the static analysis diff. It's an easy fix though