Vladimír Marek
Vladimír Marek
It is the test "can .raku.EVAL roundtrip a circular hash" ``` { my %h; %h = :42a, :b(%h); is-deeply %h.raku.EVAL, 42, 'can .raku.EVAL roundtrip a circular hash'; } ``` When...
The TakeUint8 test fails. git clone gmake gmake install gmake test During compilation I can see that dyncall_callvm_sparc64.c is compiled $ gmake test ... t/04-nativecall/02-simple-args.t ................................ Dubious, test returned 1...
Hi, While packaging jansson for Solaris we found out that the use of atomic operations complicates things. The configure script detects what kind of atomic implementation is available. Either __atomic_*...
The 05dbcreate.t test tries to connect to database without a database name specified. It does this by taking the DSN being used and removing the database name. The problem was...
Hello, we execute tests over non-default socket to avoid collision with other tests which might be running. The test wipes out database name from connect string before running, but it...
``` grammar G { token TOP { b } token a { a } token c { c } } say so G.parse('abc'); ``` ``` TOP | a | *...
Perl incorrectly adds /usr/lib/sparcv9 to list of library search paths. If you do you may not be able to override a library from that path with library of your own....