Changeset 3740

Show
Ignore:
Timestamp:
06/07/2012 03:40:50 PM (12 months ago)
Author:
kurtis.heimerl
Message:

Bug fix from Alon Levy (on mailing list). Directory was wrong, needed to be test not ../test

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • RRLP/trunk/testall.erl

    r2254 r3740  
    2828run() -> 
    2929    make:all(), 
    30     {ok,Files}=file:list_dir("../tests"), 
     30    {ok,Files}=file:list_dir("tests"), 
    3131        io:format("files=~p\n", [Files]), 
    3232        {ok,RE}=re:compile("\\.per"), 
     
    3636runtest(Filename) -> 
    3737        io:format("******************************* running ~s\n", [Filename]), 
    38     {ok,Contents}=file:read_file("../tests/" ++ Filename), 
     38    {ok,Contents}=file:read_file("tests/" ++ Filename), 
    3939        io:format("Contents of ~s = ~w~n", [Filename, Contents]), 
    4040        case xrrlp:decode(Contents) of