blob: 5d5d62d208b20d17fe6f33aca41afd659a878105 (
plain)
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
|
public class JoinTest
implements Runnable
{
public static int count = 0;
void send()
throws Exception
{
Thread.sleep(2000);
System.out.println("PASSED: Sender completed");
}
void receive()
throws Exception
{
synchronized(this) {
notifyAll();
}
Thread.sleep(5000);
count++;
System.out.println("PASSED: Receiver completed");
}
public void run()
{
String name = Thread.currentThread().getName();
if (name.equals("timer")) {
try {
Thread.sleep(10000);
} catch (InterruptedException e){}
System.out.println("FAILED: timer triggered");
System.exit(1);
}
try {
receive();
} catch (Exception e) {
System.out.println("FAILED: receiver: " + e);
System.exit(1);
}
}
public static void main(String args[])
{
try {
JoinTest sender =
new JoinTest();
JoinTest receiver =
new JoinTest();
Thread receiver_thread = new Thread(receiver);
/* Make sure the test terminates even if it hangs on network */
JoinTest timer = new JoinTest();
Thread timer_thread = new Thread(timer, "timer");
timer_thread.start();
synchronized(receiver) {
receiver_thread.start();
receiver.wait();
}
try {
sender.send();
} catch (Exception e) {
System.out.println("FAILED: sender: " + e);
System.exit(1);
}
receiver_thread.join();
if (0 == count)
throw new Exception("Nothing received");
System.out.println("PASSED: Join send/receive count="+count);
System.exit(0);
} catch (Exception e) {
System.out.println("FAILED: " + e);
System.exit(1);
}
}
}
|