[Pkg-javascript-commits] [uglifyjs] 405/491: improve `process.exit()` workaround (#2741)

Jonas Smedegaard dr at jones.dk
Wed Feb 14 19:51:57 UTC 2018


This is an automated email from the git hooks/post-receive script.

js pushed a commit to annotated tag debian/3.3.10-1
in repository uglifyjs.

commit 9809567dfc4d5c3f23c7e6424da9a471a964584a
Author: Alex Lam S.L <alexlamsl at gmail.com>
Date:   Sun Jan 7 17:53:50 2018 +0800

    improve `process.exit()` workaround (#2741)
    
    - use public API
    - fix issue with Node.js 0.10 on WIndows
---
 bin/uglifyjs      |  6 +-----
 test/jetstream.js |  6 +-----
 test/ufuzz.js     |  6 +-----
 tools/exit.js     | 15 +++++++++++++++
 4 files changed, 18 insertions(+), 15 deletions(-)

diff --git a/bin/uglifyjs b/bin/uglifyjs
index 718397c..3891713 100755
--- a/bin/uglifyjs
+++ b/bin/uglifyjs
@@ -3,11 +3,7 @@
 
 "use strict";
 
-// workaround for tty output truncation upon process.exit()
-[process.stdout, process.stderr].forEach(function(stream){
-    if (stream._handle && stream._handle.setBlocking)
-        stream._handle.setBlocking(true);
-});
+require("../tools/exit");
 
 var fs = require("fs");
 var info = require("../package.json");
diff --git a/test/jetstream.js b/test/jetstream.js
index 1cc6d4a..7ee09df 100644
--- a/test/jetstream.js
+++ b/test/jetstream.js
@@ -5,11 +5,7 @@
 
 var site = "http://browserbench.org/JetStream";
 if (typeof phantom == "undefined") {
-    // workaround for tty output truncation upon process.exit()
-    [process.stdout, process.stderr].forEach(function(stream){
-        if (stream._handle && stream._handle.setBlocking)
-            stream._handle.setBlocking(true);
-    });
+    require("../tools/exit");
     var args = process.argv.slice(2);
     var debug = args.indexOf("--debug");
     if (debug >= 0) {
diff --git a/test/ufuzz.js b/test/ufuzz.js
index de6c317..d02e9f7 100644
--- a/test/ufuzz.js
+++ b/test/ufuzz.js
@@ -6,11 +6,7 @@
 // bin/uglifyjs s.js -c && bin/uglifyjs s.js -c passes=3 && bin/uglifyjs s.js -c passes=3 -m
 // cat s.js | node && node s.js && bin/uglifyjs s.js -c | node && bin/uglifyjs s.js -c passes=3 | node && bin/uglifyjs s.js -c passes=3 -m | node
 
-// workaround for tty output truncation upon process.exit()
-[process.stdout, process.stderr].forEach(function(stream){
-    if (stream._handle && stream._handle.setBlocking)
-        stream._handle.setBlocking(true);
-});
+require("../tools/exit");
 
 var UglifyJS = require("..");
 var randomBytes = require("crypto").randomBytes;
diff --git a/tools/exit.js b/tools/exit.js
new file mode 100644
index 0000000..17048d8
--- /dev/null
+++ b/tools/exit.js
@@ -0,0 +1,15 @@
+// workaround for tty output truncation upon process.exit()
+var exit = process.exit;
+process.exit = function() {
+    var args = [].slice.call(arguments);
+    process.once("uncaughtException", function() {
+        (function callback() {
+            if (process.stdout.bufferSize || process.stderr.bufferSize) {
+                setImmediate(callback);
+            } else {
+                exit.apply(process, args);
+            }
+        })();
+    });
+    throw exit;
+};

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git



More information about the Pkg-javascript-commits mailing list