testing the new mini test runner features.

This commit is contained in:
Tomas Lindquist Olsen
2008-07-28 03:04:28 +02:00
parent 57fd67aa35
commit 675e9b3cf0
12 changed files with 12 additions and 12 deletions
+15
View File
@@ -0,0 +1,15 @@
module mini.norun_debug2;
import tango.stdc.stdlib : rand;
void main()
{
size_t iter;
while (iter < 25)
{
if (rand() % 20 == 10)
*cast(int*)null = 0;
++iter;
}
assert(0);
}