Changeset 281 for trunk/test

Show
Ignore:
Timestamp:
06/14/07 21:20:31 (1 year ago)
Author:
pragma
Message:

Better, but not tested. demangling is acting strangely.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/linktest0.d

    r224 r281  
    11/+ 
    2     Copyright (c) 2005,2006 Eric Anderton 
     2    Copyright (c) 2005-2007 Eric Anderton 
    33         
    44    Permission is hereby granted, free of charge, to any person 
     
    2929import test.testconfig; 
    3030 
    31 import mango.io.Stdout; 
     31import tango.io.Stdout; 
    3232 
    3333/** 
  • trunk/test/linktest1.d

    r221 r281  
    11/+ 
    2     Copyright (c) 2005,2006 Eric Anderton 
     2    Copyright (c) 2005-2007 Eric Anderton 
    33         
    44    Permission is hereby granted, free of charge, to any person 
     
    3030import std.stdio; 
    3131 
    32 import mango.io.Stdout; 
     32import tango.io.Stdout; 
    3333 
    3434/** 
  • trunk/test/linktest2.d

    r229 r281  
    11/+ 
    2     Copyright (c) 2005,2006 Eric Anderton 
     2    Copyright (c) 2005-2007 Eric Anderton 
    33         
    44    Permission is hereby granted, free of charge, to any person 
     
    3030import test.testconfig; 
    3131 
    32 import mango.io.Stdout; 
     32import tango.io.Stdout; 
    3333 
    3434/** 
  • trunk/test/pathtest1.d

    r223 r281  
    11/+ 
    2     Copyright (c) 2006 Eric Anderton 
     2    Copyright (c) 2006-2007 Eric Anderton 
    33         
    44    Permission is hereby granted, free of charge, to any person 
     
    3131import test.testconfig; 
    3232 
    33 import mango.io.Stdout; 
     33import tango.io.Stdout; 
    3434/** 
    3535    This test searches the D library namespace located in DMD's lib subdirectory. 
  • trunk/test/pathtest2.d

    r223 r281  
    11/+ 
    2     Copyright (c) 2006 Eric Anderton 
     2    Copyright (c) 2006-2007 Eric Anderton 
    33         
    44    Permission is hereby granted, free of charge, to any person 
     
    3131import test.testconfig; 
    3232 
    33 import mango.io.Stdout; 
     33import tango.io.Stdout; 
    3434 
    3535/** 
  • trunk/test/testmodule.d

    r228 r281  
    128128/* Eratosthenes Sieve prime number calculation. */ 
    129129  
    130 bit flags[8191]; 
     130bool flags[8191]; 
    131131  
    132132void sieve(int iterations)