Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3989

Show
Ignore:
Timestamp:
10/07/08 23:48:09 (1 month ago)
Author:
Jim Panic
Message:

added first alpha test releases

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/tango.test/README

    r3987 r3989  
    3636    This will fetch all necessary files and place them accordingly. 
    3737 
     38    $ cat dsss.tango.test.conf >> dsss.conf 
     39 
     40    Append tango.test targets to your dsss.conf or create a dsss.conf. 
     41     
    3842    After that, you just build it with: 
    3943 
  • branches/tango.test/tango/test/suite/TestSuite.d

    r3987 r3989  
    254254    }); 
    255255 
    256     parser.bindPosix("base-dir", (char[] value) { cfg.baseDir = value; }); 
     256    parser.bindPosix("base-dir", (char[] value) {  
     257        if (value[$ - 1] == '/') value = value[0..$ - 1]; 
     258        cfg.baseDir = value;  
     259    }); 
    257260    parser.bindPosix("build-tool", (char[] value) { cfg.buildTool = value; });  
    258261