From 6f86b9cb70f4b4d9b214ef3533efbf389fa43824 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 5 Dec 2011 16:25:20 -0800 Subject: [PATCH] Disable test-setproctitle on darwin --- test/simple/test-setproctitle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/simple/test-setproctitle.js b/test/simple/test-setproctitle.js index 4276d2d366..0bf6fd35c3 100644 --- a/test/simple/test-setproctitle.js +++ b/test/simple/test-setproctitle.js @@ -22,7 +22,7 @@ // Original test written by Jakub Lekstan // FIXME add sunos support -if ('linux darwin freebsd'.indexOf(process.platform) === -1) { +if ('linux freebsd'.indexOf(process.platform) === -1) { console.error("Skipping test, platform not supported."); process.exit(); }