Miki Tebeka

Results 83 comments of Miki Tebeka

``` $ env | grep -E "LC_ALL|LC_CTYPE|LANG" LANG=en_IL GDM_LANG=en_IL $ head -50 /usr/share/X11/locale/iso8859-1/Compose # # ISO 8859-1 (Latin1) Compose Sequence # # # # Sequence Definition # # Means #...

> The easiest workaround would be to set LANG=en_IL.UTF-8 when launching Gotraceui. That worked thanks! Feel free to close (in case you want to keep this around).

Interesting idea. Some comments about it: 1. Since you use `tee` all the original output is in `test.out` which you can grep for `FAIL` 2. Since `go2xunit` prints to stdout...

I rather keep `go2xunit` simple. Closing this one.

My current thought is to break the lexer out and have it report tokens (start test, data, end test ...) via a channel.

Just merged streaming branch to master with initial gotest lexer. @tamird can you have a look at see if this works for you?

Parser is on the way to be written (see streaming branch). However a parser will be able to emit one test at a time, is this what you wanted?

Thanls @eloo, Can you provide the input to `go2xunit`?

After some investigation, I don't really know what to do here. According to [this article](https://coderanch.com/t/124970/languages/Invalid-Character-CDATA) you can't have anything in `CDATA` section. However the string itself is a valid UTF-8...

I'm not sure I want to do this in the general case since it might delete data people use. Maybe a flat to clean it up? Need to think about...