Changeset 281 for trunk/test
- Timestamp:
- 06/14/07 21:20:31 (1 year ago)
- Files:
-
- trunk/test/linktest0.d (modified) (2 diffs)
- trunk/test/linktest1.d (modified) (2 diffs)
- trunk/test/linktest2.d (modified) (2 diffs)
- trunk/test/pathtest1.d (modified) (2 diffs)
- trunk/test/pathtest2.d (modified) (2 diffs)
- trunk/test/testmodule.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/linktest0.d
r224 r281 1 1 /+ 2 Copyright (c) 2005 ,2006Eric Anderton2 Copyright (c) 2005-2007 Eric Anderton 3 3 4 4 Permission is hereby granted, free of charge, to any person … … 29 29 import test.testconfig; 30 30 31 import mango.io.Stdout;31 import tango.io.Stdout; 32 32 33 33 /** trunk/test/linktest1.d
r221 r281 1 1 /+ 2 Copyright (c) 2005 ,2006Eric Anderton2 Copyright (c) 2005-2007 Eric Anderton 3 3 4 4 Permission is hereby granted, free of charge, to any person … … 30 30 import std.stdio; 31 31 32 import mango.io.Stdout;32 import tango.io.Stdout; 33 33 34 34 /** trunk/test/linktest2.d
r229 r281 1 1 /+ 2 Copyright (c) 2005 ,2006Eric Anderton2 Copyright (c) 2005-2007 Eric Anderton 3 3 4 4 Permission is hereby granted, free of charge, to any person … … 30 30 import test.testconfig; 31 31 32 import mango.io.Stdout;32 import tango.io.Stdout; 33 33 34 34 /** trunk/test/pathtest1.d
r223 r281 1 1 /+ 2 Copyright (c) 2006 Eric Anderton2 Copyright (c) 2006-2007 Eric Anderton 3 3 4 4 Permission is hereby granted, free of charge, to any person … … 31 31 import test.testconfig; 32 32 33 import mango.io.Stdout;33 import tango.io.Stdout; 34 34 /** 35 35 This test searches the D library namespace located in DMD's lib subdirectory. trunk/test/pathtest2.d
r223 r281 1 1 /+ 2 Copyright (c) 2006 Eric Anderton2 Copyright (c) 2006-2007 Eric Anderton 3 3 4 4 Permission is hereby granted, free of charge, to any person … … 31 31 import test.testconfig; 32 32 33 import mango.io.Stdout;33 import tango.io.Stdout; 34 34 35 35 /** trunk/test/testmodule.d
r228 r281 128 128 /* Eratosthenes Sieve prime number calculation. */ 129 129 130 b itflags[8191];130 bool flags[8191]; 131 131 132 132 void sieve(int iterations)
