148: setting java process name does not work on linux either, disable
This commit is contained in:
parent
72af73400a
commit
b80627d09f
|
@ -1,11 +1,11 @@
|
|||
--- ../node/test/simple/test-setproctitle.js 2013-08-22 13:48:54.000000000 +0200
|
||||
+++ ./test/simple/test-setproctitle.js 2014-01-09 10:37:55.000000000 +0100
|
||||
--- ../node/test/simple/test-setproctitle.js 2013-09-09 09:17:35.003856127 -0700
|
||||
+++ test/simple/test-setproctitle.js 2014-01-10 15:22:54.705208902 -0800
|
||||
@@ -40,6 +40,8 @@
|
||||
process.title = title;
|
||||
assert.equal(process.title, title);
|
||||
|
||||
+// On Mac avatar-js java process name can't be changed.
|
||||
+if (process.platform !== 'darwin') {
|
||||
+// java process name can't be changed.
|
||||
+/*
|
||||
exec('ps -p ' + process.pid + ' -o args=', function(error, stdout, stderr) {
|
||||
assert.equal(error, null);
|
||||
assert.equal(stderr, '');
|
||||
|
@ -13,5 +13,4 @@
|
|||
// omitting trailing whitespace and \n
|
||||
assert.equal(stdout.replace(/\s+$/, ''), title);
|
||||
});
|
||||
+}
|
||||
\ No newline at end of file
|
||||
+*/
|
||||
|
|
|
@ -526,22 +526,12 @@ Object.defineProperty(exports, 'abort', {
|
|||
}
|
||||
});
|
||||
|
||||
var setup = false;
|
||||
function setupArgs() {
|
||||
if (!setup) {
|
||||
__avatar.initArgv(Java.to(exports.argv, "java.lang.String[]"));
|
||||
setup = true;
|
||||
}
|
||||
}
|
||||
|
||||
Object.defineProperty(exports, 'title', {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
setupArgs();
|
||||
return LibUV.getTitle();
|
||||
},
|
||||
set: function(value) {
|
||||
setupArgs();
|
||||
LibUV.setTitle(value);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue