Arjen, I can't comment on most of this, but...
On Monday 09 Sep 2013 08:59:58 Arjen Markus wrote: > > > Did your good test results also include the test_interactive target? > > That target should exercise all interactive devices (such as xcairo if > > that is available) that you have built. > > The non-interactive tests were almost as clean as possible. There was > one difference with example 23: the text file for this example contains > the address "0x8000000:L" instead of "0x8000000" (so an extra L). I have > no idea where that comes from. This is with python? It's just a 32-bit / 64-bit issue. Python doesn't seem to do unsigned ints so on 32-bit systems the 32 bit unsigned int becomes a 64-bit long, hence the L appended. On 64-bit systems int is 64-bit anyway so there isn't a problem. We've seen this on other platforms and I've not found an easy way round it, but it is only a minor issue and only relevant for our test suite so I'm not too worried. Andrew ------------------------------------------------------------------------------ Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more! Discover the easy way to master current and previous Microsoft technologies and advance your career. Get an incredible 1,500+ hours of step-by-step tutorial videos with LearnDevNow. Subscribe today and save! http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk _______________________________________________ Plplot-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/plplot-devel
