~ubuntu-branches/ubuntu/quantal/zeroc-ice/quantal

« back to all changes in this revision

Viewing changes to cs/test/Ice/timeout/Client.cs

  • Committer: Bazaar Package Importer
  • Author(s): Cleto Martín
  • Date: 2011-06-25 19:44:26 UTC
  • mfrom: (6.1.16 sid)
  • Revision ID: james.westby@ubuntu.com-20110625194426-9fip3u3hlwheohvl
Tags: 3.4.2-1
New upstream release (Closes: #631456).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// **********************************************************************
2
2
//
3
 
// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
 
3
// Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4
4
//
5
5
// This copy of Ice is licensed to you under the terms described in the
6
6
// ICE_LICENSE file included in this distribution.
26
26
        return 0;
27
27
    }
28
28
 
29
 
    public static void Main(string[] args)
 
29
    public static int Main(string[] args)
30
30
    {
31
31
        int status = 0;
32
32
        Ice.Communicator communicator = null;
33
33
 
 
34
#if !COMPACT
34
35
        Debug.Listeners.Add(new ConsoleTraceListener());
 
36
#endif
35
37
 
36
38
        try
37
39
        {
70
72
            }
71
73
        }
72
74
 
73
 
        if(status != 0)
74
 
        {
75
 
            System.Environment.Exit(status);
76
 
        }
 
75
        return status;
77
76
    }
78
77
}