forked from BruceEckel/OnJava8-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
144 lines (139 loc) · 7.3 KB
/
build.xml
File metadata and controls
144 lines (139 loc) · 7.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="tasks"/>
<property name="excludedfiles" value=""/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="ActiveObjectDemo" />
<jrun cls="AtomicEvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="AtomicIntegerTest" />
<jrun cls="AtomicityTest" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="AttemptLocking" />
<jrun cls="BankTellerSimulation" arguments="5" />
<jrun cls="BasicThreads" />
<jrun cls="CachedThreadPool" />
<jrun cls="CallableDemo" />
<jrun cls="CaptureUncaughtException" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="CarBuilder" />
<jrun cls="CloseResource" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="CountDownLatchDemo" />
<jrun cls="tasks.CriticalSection" dirpath="../tasks" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="DaemonFromFactory" />
<jrun cls="Daemons" />
<jrun cls="DaemonsDoRunFinally" />
<jrun cls="DeadlockingDiningPhilosophers" arguments="0 5 timeout" />
<jrun cls="DelayQueueDemo" />
<jrun cls="EvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="ExchangerDemo" />
<jrun cls="tasks.ExplicitCriticalSection" dirpath="../tasks" failOnError='false' msg='* Exception was Expected *' />
<jrun cls="FastSimulation" />
<jrun cls="FixedDiningPhilosophers" arguments="5 5 timeout" />
<jrun cls="FixedThreadPool" />
<jrun cls="GreenhouseScheduler" arguments="5000" />
<jrun cls="HorseRace" />
<jrun cls="Interrupting" />
<jrun cls="Interrupting2" />
<jrun cls="InterruptingIdiom" arguments="1100" />
<jrun cls="Joining" />
<jrun cls="ListComparisons" arguments="1 10 10" />
<jrun cls="MainThread" />
<jrun cls="MapComparisons" arguments="1 10 10" />
<jrun cls="MoreBasicThreads" />
<jrun cls="MultiLock" />
<jrun cls="MutexEvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="NIOInterruption" />
<jrun cls="NotifyVsNotifyAll" />
<jrun cls="OrnamentalGarden" />
<jrun cls="PipedIO" />
<jrun cls="PriorityBlockingQueueDemo" />
<jrun cls="ReaderWriterList" />
<jrun cls="ResponsiveUI" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="Restaurant" />
<jrun cls="SelfManaged" />
<jrun cls="SemaphoreDemo" />
<jrun cls="SerialNumberChecker" arguments="4" />
<jrun cls="SettingDefaultHandler" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="SimpleDaemons" />
<jrun cls="SimpleMicroBenchmark" />
<jrun cls="SimplePriorities" />
<jrun cls="SimpleThread" />
<jrun cls="SingleThreadExecutor" />
<jrun cls="SleepingTask" />
<jrun cls="SynchronizationComparisons" />
<jrun cls="SyncObject" />
<jrun cls="TestBlockingQueues" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrun cls="ThreadLocalVariableHolder" />
<jrun cls="ThreadVariations" />
<jrun cls="ToastOMatic" />
<jrun cls="tasks.restaurant2.RestaurantWithQueues" dirpath="../tasks/restaurant2" arguments="5" />
<jrun cls="tasks.waxomatic.WaxOMatic" dirpath="../tasks/waxomatic" />
<jrun cls="tasks.waxomatic2.WaxOMatic2" dirpath="../tasks/waxomatic2" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="ActiveObjectDemo" />
<jrunconsole cls="AtomicEvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="AtomicIntegerTest" />
<jrunconsole cls="AtomicityTest" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="AttemptLocking" />
<jrunconsole cls="BankTellerSimulation" arguments="5" />
<jrunconsole cls="BasicThreads" />
<jrunconsole cls="CachedThreadPool" />
<jrunconsole cls="CallableDemo" />
<jrunconsole cls="CaptureUncaughtException" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="CarBuilder" />
<jrunconsole cls="CloseResource" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="CountDownLatchDemo" />
<jrunconsole cls="tasks.CriticalSection" dirpath="../tasks" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="DaemonFromFactory" />
<jrunconsole cls="Daemons" />
<jrunconsole cls="DaemonsDoRunFinally" />
<jrunconsole cls="DeadlockingDiningPhilosophers" arguments="0 5 timeout" />
<jrunconsole cls="DelayQueueDemo" />
<jrunconsole cls="EvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="ExchangerDemo" />
<jrunconsole cls="tasks.ExplicitCriticalSection" dirpath="../tasks" failOnError='false' msg='* Exception was Expected *' />
<jrunconsole cls="FastSimulation" />
<jrunconsole cls="FixedDiningPhilosophers" arguments="5 5 timeout" />
<jrunconsole cls="FixedThreadPool" />
<jrunconsole cls="GreenhouseScheduler" arguments="5000" />
<jrunconsole cls="HorseRace" />
<jrunconsole cls="Interrupting" />
<jrunconsole cls="Interrupting2" />
<jrunconsole cls="InterruptingIdiom" arguments="1100" />
<jrunconsole cls="Joining" />
<jrunconsole cls="ListComparisons" arguments="1 10 10" />
<jrunconsole cls="MainThread" />
<jrunconsole cls="MapComparisons" arguments="1 10 10" />
<jrunconsole cls="MoreBasicThreads" />
<jrunconsole cls="MultiLock" />
<jrunconsole cls="MutexEvenSupplier" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="NIOInterruption" />
<jrunconsole cls="NotifyVsNotifyAll" />
<jrunconsole cls="OrnamentalGarden" />
<jrunconsole cls="PipedIO" />
<jrunconsole cls="PriorityBlockingQueueDemo" />
<jrunconsole cls="ReaderWriterList" />
<jrunconsole cls="ResponsiveUI" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="Restaurant" />
<jrunconsole cls="SelfManaged" />
<jrunconsole cls="SemaphoreDemo" />
<jrunconsole cls="SerialNumberChecker" arguments="4" />
<jrunconsole cls="SettingDefaultHandler" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="SimpleDaemons" />
<jrunconsole cls="SimpleMicroBenchmark" />
<jrunconsole cls="SimplePriorities" />
<jrunconsole cls="SimpleThread" />
<jrunconsole cls="SingleThreadExecutor" />
<jrunconsole cls="SleepingTask" />
<jrunconsole cls="SynchronizationComparisons" />
<jrunconsole cls="SyncObject" />
<jrunconsole cls="TestBlockingQueues" failOnError='false' timeOut='4000' msg='* Timeout for Testing *' />
<jrunconsole cls="ThreadLocalVariableHolder" />
<jrunconsole cls="ThreadVariations" />
<jrunconsole cls="ToastOMatic" />
<jrunconsole cls="tasks.restaurant2.RestaurantWithQueues" dirpath="../tasks/restaurant2" arguments="5" />
<jrunconsole cls="tasks.waxomatic.WaxOMatic" dirpath="../tasks/waxomatic" />
<jrunconsole cls="tasks.waxomatic2.WaxOMatic2" dirpath="../tasks/waxomatic2" />
</target>
</project>