Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-28 Thread Doug Williams
It was working on the same machine the next day. So, it may have been a cache issue or some other transient. On Saturday, July 28, 2012, Eli Barzilay wrote: Is it possible that this is something that is resolved by a forced refresh? if not, what's tthe url is not found? On Wednesday, Doug

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-27 Thread Michael Sperber
Ryan Culpepper r...@cs.utah.edu writes: * Mike Sperber sper...@deinprogramm.de - DMdA Tests - Stepper Tests - Signature Tests Done. -- Cheers =8-} Mike Friede, Völkerverständigung und überhaupt blabla _ Racket Developers list:

Re: [racket-dev] Pre-Release Checklist for v5.3, second call

2012-07-26 Thread Matthew Flatt
At Wed, 25 Jul 2012 16:28:29 -0400, Ryan Culpepper wrote: * Matthew Flatt mfl...@cs.utah.edu - JPR's test suite - Run COM tests - Try compiling with -funsigned-char Passed. Updates: - Update man pages in racket/man/man1: racket.1, gracket.1, raco.1 Done (no changes).

Re: [racket-dev] Pre-Release Checklist for v5.3, second call

2012-07-26 Thread John Clements
On Jul 25, 2012, at 4:28 PM, Ryan Culpepper wrote: * John Clements cleme...@brinckerhoff.org - Stepper Tests Done. Updates: - Stepper Updates: update HISTORY (updates should show v5.3 as the most current version; email me to pick the changes when they're done, or tell me if there

Re: [racket-dev] Pre-Release Checklist for v5.3, second call

2012-07-26 Thread Danny Yoo
* Danny Yoo d...@cs.wpi.edu - Whalesong Tests (confirm that Whalesong runs from PLaneT) Just wanted to confirm that Whalesong in development is running under 5.2.900. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-26 Thread Ryan Culpepper
Doug: Can you test your program again with the release build that just completed? (Sorry it wasn't available sooner.) Ryan On 07/25/2012 02:39 PM, Doug Williams wrote: And one last post on this. Now it is reliably running. I'm assuming once I got a .zo of the offending module actually built,

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Jon Rafkind
* Jon Rafkind rafk...@cs.utah.edu Release tests for (one of the) linux releases: - Test that the `racket' and `racket-textual' source releases compile fine (note that they're still called `plt' and `mz' at this stage). - Test that the binary installers for both work, try each

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
Attempting to download the 64 bit windows version gives a Page Not-Found error and the following. ((uncaught-exception-handler) (*(+(*)(*(+(*)(*)(*)(*)(*))(+(*)(*)(*)(*)(*))(+(*)(*)(*)(*(+(*)(*)(*)(* uncaught exception: 404 The 32 bit Windows versions downloads okay. Doug On Tue,

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Ryan Culpepper
I just tried downloading the Racket package for Windows (x86, 64-bit), and it worked for me. Can you try again and let me know if it still fails? Also, if you can't download from the form, can you try the static table link (just under the usual download form, on the right side) and see if you

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
The pre-release 32-bit version still fails for my large applications at work fails to execute in DrRacket - 32-bit Windows XP. I don't have the source or symbol tables loaded so the only message I get from the Visual Studio debugger is attached. This is the same problem I was having with the

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Kathy Gray
On 24 Jul 2012, at 16:03, Ryan Culpepper wrote: * Kathy Gray kathryn.g...@cl.cam.ac.uk - Test Engine Tests Done -Kathy _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
Some more information on the problem. The application runs fine with the pre-release on Windows 7 - 64 bit. The code that is dying on Windows XP 32-bit is: --- (require racket/runtime-path) ... ;;; (define-runtime-path subject-path ..\\Subjects.txt) ;;; (define (load-subject-encodings)

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
I used Create Executable in DrRacket. But, I just tried raco exe --gui main.rkt to create it and get exactly the same error. On Wed, Jul 25, 2012 at 11:46 AM, Sam Tobin-Hochstadt sa...@ccs.neu.edu wrote: Is this application generated with 'raco exe'? Or 'Create Executable' in DrRacket? On

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
It turns out that if I require racket/match explicitly it works. Although I shouldn't have to since racket/match is provided by #lang racket. So, I have a work around on Windows XP 32-bit. But it would be nice to get the problem fixed. On Wed, Jul 25, 2012 at 11:51 AM, Doug Williams

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Ryan Culpepper
I suspect the problem is caused by commit 8358420f, which changed match to load part of its implementation lazily using lazy-require. Part of that commit was reverted by 949d12e2, but possibly the use of lazy-require left in is causing problems in some cases. I think it would be best to just

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
And one last post on this. Now it is reliably running. I'm assuming once I got a .zo of the offending module actually built, from then on I'm okay as long as I don't play around with it. Does that make sense? And, just to test that, I deleted the compiled directory and the weird behavior comes

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Sam Tobin-Hochstadt
On Wed, Jul 25, 2012 at 11:16 AM, Ryan Culpepper r...@cs.utah.edu wrote: I suspect the problem is caused by commit 8358420f, which changed match to load part of its implementation lazily using lazy-require. Part of that commit was reverted by 949d12e2, but possibly the use of lazy-require left

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Doug Williams
I had sent a separate e-mail to Matthew wondering if it was in the module name resolver, which has also been modified. It would seem (to me naively anyway) that that would be more likely to have OS dependencies than the lazy require. Or maybe an unexpected interaction between those two. On Wed,

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Stephen Chang
* Stephen Chang stch...@ccs.neu.edu - Lazy Racket Tests Pass - Lazy stepper tests Fail, but I assume commit 25068 fixes the problems (in the process of confirming now.) * Eli Barzilay e...@barzilay.org - Swindle Tests - XREPL Tests - Racket Tree: compare new distribution tree

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Stephen Chang
On Wed, Jul 25, 2012 at 2:59 PM, Stephen Chang stch...@ccs.neu.edu wrote: * Stephen Chang stch...@ccs.neu.edu - Lazy Racket Tests Pass - Lazy stepper tests Fail, but I assume commit 25068 fixes the problems (in the process of confirming now.) With 25068, all the stepper tests pass.

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Ryan Culpepper
Well, the possible problem that I had in mind still should not cause behavior like that, at least not by itself. I would expect it to always fail trying to load a module in the racket/match implementation. OTOH, if reverting the lazy-require addition fixes the problem, that suggests that the

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Neil Toronto
On 07/24/2012 08:03 AM, Ryan Culpepper wrote: * Neil Toronto neil.toro...@gmail.com - Plot Tests Done. Can you also add the following to future checklists? - Images tests - Inspect icons I've just done these, too. Sorry about replying late. I'm on a 1/2-to-3/4-time-ish vacation.

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Ryan Culpepper
On 07/25/2012 04:00 PM, Neil Toronto wrote: On 07/24/2012 08:03 AM, Ryan Culpepper wrote: * Neil Toronto neil.toro...@gmail.com - Plot Tests Done. Can you also add the following to future checklists? - Images tests - Inspect icons I've just done these, too. Okay, I've added those items

[racket-dev] Pre-Release Checklist for v5.3, second call

2012-07-25 Thread Ryan Culpepper
Checklist items for the v5.3 release (using the v5.2.900.1 release candidate build) Search for your name to find relevant items, reply when you finish an item (please indicate which item/s is/are done). Also, if you have any commits that should have been picked, make sure that the changes are

Re: [racket-dev] Pre-Release Checklist for v5.3, second call

2012-07-25 Thread Stephen Chang
* John Clements cleme...@brinckerhoff.org - Stepper Tests Passing. Updates: - Stepper Updates: update HISTORY (updates should show v5.3 as the most current version; email me to pick the changes when they're done, or tell me if there are no such changes.) Did not do this. *

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-25 Thread Stephen Bloch
On Jul 24, 2012, at 11:03 AM, Ryan Culpepper wrote: * Stephen Bloch sbl...@adelphi.edu - Picturing Programs Tests Clean. Stephen Bloch sbl...@adelphi.edu _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Matthew Flatt
At Tue, 24 Jul 2012 11:03:16 -0400, Ryan Culpepper wrote: * Matthew Flatt mfl...@cs.utah.edu - Racket Tests - Languages Tests - GRacket Tests (Also check that `gracket -z' and `gracket-text' still works in Windows and Mac OS X) - mzc --exe tests - .plt-packing Tests

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread David Van Horn
On 7/24/12 11:03 AM, Ryan Culpepper wrote: * David Van Horn dvanh...@ccs.neu.edu - EoPL Tests Passed. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Robby Findler
On Tue, Jul 24, 2012 at 10:03 AM, Ryan Culpepper r...@cs.utah.edu wrote: * Robby Findler ro...@eecs.northwestern.edu - DrRacket Tests - Framework Tests - Contracts Tests - Games Tests - Teachpacks Tests: image tests - PLaneT Tests - Redex Tests Updates: - DrRacket

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-07-24 Thread Gregory Cooper
* Greg Cooper g...@cs.brown.edu - FrTime Tests Done. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-23 Thread Danny Yoo
* Danny Yoo d...@cs.wpi.edu  - Whalesong Tests (confirm that Whalesong runs from PLaneT) I'm currently blocked on this. Whalesong depends on #lang planet to work, but due to a bug, I haven't been able to make progress on running the tests. There is a a patch in master

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-19 Thread Kathy Gray
On 18 Apr 2012, at 16:00, Ryan Culpepper wrote: * Kathy Gray kathryn.g...@cl.cam.ac.uk - Test Engine Tests Done -Kathy _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-19 Thread Doug Williams
All of the plot routines work as expected. Done Doug On Wednesday, April 18, 2012, Ryan Culpepper wrote: Checklist items for the v5.3 release (using the v5.2.901.1 release candidate build) Search for your name to find relevant items, reply when you finish an item (please indicate which

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-19 Thread John Clements
On Apr 18, 2012, at 8:00 AM, Ryan Culpepper wrote: Checklist items for the v5.3 release (using the v5.2.901.1 release candidate build) I'm confused by the OS X download options on the pre-release download page (http://pre.racket-lang.org/release/installers/). Specifically, one of the

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-19 Thread Eli Barzilay
Three hours ago, John Clements wrote: Mac OS X (32-bit 64-bit) I'm guessing this was supposed to be Mac OS X (Intel 64-bit) Yes, that was a typo. -- ((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay: http://barzilay.org/ Maze

[racket-dev] Pre-Release Checklist for v5.3

2012-04-18 Thread Ryan Culpepper
Checklist items for the v5.3 release (using the v5.2.901.1 release candidate build) Search for your name to find relevant items, reply when you finish an item (please indicate which item/s is/are done). Also, if you have any commits that should have been picked, make sure that the changes are

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-18 Thread Vincent St-Amour
At Wed, 18 Apr 2012 09:00:16 -0600, Ryan Culpepper wrote: - Typed Racket Tests Done. Vincent _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-18 Thread Jon Rafkind
* Jon Rafkind rafk...@cs.utah.edu Release tests for (one of the) linux releases: - Test that the `racket' and `racket-textual' source releases compile fine (note that they're still called `plt' and `mz' at this stage). - Test that the binary installers for both work, try each

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-18 Thread Jay McCarthy
On Wed, Apr 18, 2012 at 9:00 AM, Ryan Culpepper r...@cs.utah.edu wrote: * Jay McCarthy jay.mccar...@gmail.com  - Web Server Tests  - XML Tests  - HTML Tests  - PLAI Tests  - Racklog tests  - Datalog tests All passed. Jay -- Jay McCarthy j...@cs.byu.edu Assistant Professor / Brigham

Re: [racket-dev] Pre-Release Checklist for v5.3

2012-04-18 Thread David Van Horn
On 4/18/12 11:00 AM, Ryan Culpepper wrote: - EoPL Tests Done. David _ Racket Developers list: http://lists.racket-lang.org/dev