Re: [fpc-pascal] How to test fpjson?

2016-01-27 Thread Michael Van Canneyt
On Wed, 27 Jan 2016, silvioprog wrote: Nice! :-) I already found two failures, but I don't know if it something in my environment (Lazarus 1.7 rUnknown FPC 3.1.1 i386-win32-win32/win64): It is related to i386. On 64-bit (the platform I work on) it does not occur. I didn't find time yet to

[fpc-pascal] RTL with debug info on win64

2016-01-27 Thread Martin Schreiber
Hi, I am not able to build a fixes_3_0 RTL with debug info on win64 with a fixes_3_0 ppcx64.exe. How should it be done? Thanks, Martin ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc

Re: [fpc-pascal] How to test fpjson?

2016-01-27 Thread silvioprog
On Wed, Jan 27, 2016 at 3:40 PM, Michael Van Canneyt wrote: > On Wed, 27 Jan 2016, silvioprog wrote: > >> On Wed, Jan 27, 2016 at 2:41 PM, Graeme Geldenhuys < >> mailingli...@geldenhuys.co.uk> wrote: >> >> On 2016-01-27 17:28, silvioprog wrote: >>> Is the `testjsonparser` unit all the tests

Re: [fpc-pascal] How to test fpjson?

2016-01-27 Thread Michael Van Canneyt
On Wed, 27 Jan 2016, silvioprog wrote: On Wed, Jan 27, 2016 at 2:41 PM, Graeme Geldenhuys < mailingli...@geldenhuys.co.uk> wrote: On 2016-01-27 17:28, silvioprog wrote: Is the `testjsonparser` unit all the tests for FCL JSON, or can I find more tests in another place? I have more unit t

Re: [fpc-pascal] How to test fpjson?

2016-01-27 Thread silvioprog
On Wed, Jan 27, 2016 at 2:41 PM, Graeme Geldenhuys < mailingli...@geldenhuys.co.uk> wrote: > On 2016-01-27 17:28, silvioprog wrote: > > Is the `testjsonparser` unit all the tests for FCL JSON, or can I find > more > > tests in another place? > > I have more unit test units in the /src/packages/fcl

Re: [fpc-pascal] How to test fpjson?

2016-01-27 Thread Graeme Geldenhuys
On 2016-01-27 17:28, silvioprog wrote: > Is the `testjsonparser` unit all the tests for FCL JSON, or can I find more > tests in another place? I have more unit test units in the /src/packages/fcl-json/tests/ directory. But I assume you are referring specifically to the JSON parser functionality.

[fpc-pascal] How to test fpjson?

2016-01-27 Thread silvioprog
Hello, First, sorry for the silly question! ^^' So, I want to send some improviments to the `jsonscanner` and `jsonparser` units based on the updated JSON RFC , however I need to check if their previous implementations will continue working after my changes.