annotate run/unittest_01.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents 1e6afb94ce6d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
374
f87ba6507260 added missing meta-data
thomask
parents: 89
diff changeset
1 // $HeadURL$
f87ba6507260 added missing meta-data
thomask
parents: 89
diff changeset
2 // $Date$
f87ba6507260 added missing meta-data
thomask
parents: 89
diff changeset
3 // $Author$
f87ba6507260 added missing meta-data
thomask
parents: 89
diff changeset
4
736
1e6afb94ce6d updated meta data for Torture
thomask
parents: 374
diff changeset
5 // __DSTRESS_TORTURE_BLOCK__ -release
85
659bb018c489 1) changed "?DSTRESS_FLAGS?" to "__DSTRESS_DFLAGS__" in order to cope with botched shells
thomask
parents: 84
diff changeset
6 // __DSTRESS_DFLAGS__ -unittest
84
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
7
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
8 module dstress.run.unittest_01;
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
9
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
10 int status;
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
11
89
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
12 class MyClass{
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
13 unittest{
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
14 status++;
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
15 }
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
16 }
76a93657c459 extended unittest test cases
thomask
parents: 85
diff changeset
17
84
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
18 int main(){
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
19 assert(status==1);
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
20 return 0;
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
21 }
91feffeeafa6 used the new ?DSTRESS_FLAGS? support to
thomask
parents:
diff changeset
22