It looks to me you need to work in UTF8 environment (I might be wrong though). For that, check the output of `echo $LANG'. That will tell you if you are working with UTF8 environment. If not, you can set it with `export LANG="your_language.utf8"' (replace "your_language" with your environment language; for C-shell variants, use setenv).
CGS On Wed, Aug 1, 2012 at 4:22 PM, Erik Timan <[email protected]> wrote: > Hello all! > > I've built CouchDB 1.2.0 on CentOS 6.2 using the RPM spec from > https://github.com/wendall911/couchdb-rpm. While it builds fine, make > check fails for me when running etap/190-json-stream-parse.t. I get > "Failed 88/99 subtests". > > After diving deeper, I found that the test failed on line 87 in > 190-json-stream-parse.t: > > {<<"foo", 5, "bar">>, "\"foo\\u0005bar\"", "string literal with > \\u0005"}, > > (for context, see > > https://github.com/apache/couchdb/blob/e736fa9e314034e2603ac5861692ddeab92f1dad/test/etap/190-json-stream-parse.t#L87 > ) > > If I comment that line out, all other test cases completes ok. To me it > looks like some unicode problem. Can someone shed some light upon why > this is happening and if there is a real problem here? > > Some additional info: > > Arch: x86_64 > CouchDB version: 1.2.0 > Erlang version: R15B01 > JS-devel version: 1.8.5 > > Tnx! > /Erik >
