[racket] Order of executing required modules

From: Jos Koot (jos.koot at telefonica.net)
Date: Tue Apr 5 10:49:14 EDT 2011

Hi
Consider:
 
File all-tetst.rkt
#lang scheme
(require "test-a.rkt") 
(require "test-b.rkt") 
(require "test-c.rkt") 
(require "test-d.rkt")
...
(require "test-z.rkt")
 
It appears that the tests are done in reverse order, id est from z to a in
stead from a to z. Not really a problem for me, but it could be for modules
that produce side effects (for example, one writing a file, the other one
reading it) I wonder: is there a specific reason for the reversed
invokations of the required modules? Or should I use another manner for
running the tests in a specific order?
 
Thanks, Jos
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20110405/fedebf66/attachment.html>

Posted on the users mailing list.