blob: ec1246fd0d3f2c81f4afca33797f1a7f0f0edff3 (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
(function(global){
require("Ice/Ice");
var write = function(msg)
{
process.stdout.write(msg);
};
var writeLine = function(msg)
{
this.write(msg + "\n");
};
var run = function(module)
{
var id = new Ice.InitializationData();
id.properties = Ice.createProperties(process.argv);
module.require("./Client");
var test = global.__test__;
test({write: write, writeLine: writeLine}, id).exception(
function(ex, r)
{
console.log(ex.toString());
if(r instanceof Ice.AsyncResult)
{
console.log("\nexception occurred in call to " + r.operation);
}
if(ex.stack)
{
console.log(ex.stack);
}
process.exit(1);
});
};
module.exports = run;
}(typeof (global) === "undefined" ? window : global));
|