in reply to Re: Module development: concurrent versions (Updated)
in thread Module development: concurrent versions (Updated)
Yeah. I've done that before, but it means that you cannot use the two versions in the same program.
The problem I'm trying to track down only manifests itself when the size of the arrays being sized gets above about 500,000 elements which make comparing trace output by eye impossible. So then you want to automate the comparison--diff or a custom script--but doing this with trace lines that (have to) contain addresses, means that all lines are different. (Ie. as different modules are loaded, the memory allocator has been exercised in different ways, so the addresses of test arrays and it elements are all different.)
I needed to be able to load both modules concurrently so I can run them on the same array.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Module development: concurrent versions (Updated)
by syphilis (Archbishop) on Dec 23, 2010 at 11:30 UTC | |
by Anonyrnous Monk (Hermit) on Dec 23, 2010 at 11:44 UTC | |
by syphilis (Archbishop) on Dec 23, 2010 at 12:04 UTC | |
by BrowserUk (Patriarch) on Dec 23, 2010 at 17:32 UTC | |
by stefbv (Priest) on Dec 24, 2010 at 09:05 UTC | |
| |
by Anonyrnous Monk (Hermit) on Dec 23, 2010 at 13:34 UTC | |
|
Re^3: Module development: concurrent versions (Updated)
by Anonyrnous Monk (Hermit) on Dec 23, 2010 at 10:20 UTC | |
by BrowserUk (Patriarch) on Dec 23, 2010 at 11:04 UTC |