summaryrefslogtreecommitdiff
path: root/test/storage
diff options
context:
space:
mode:
Diffstat (limited to 'test/storage')
-rwxr-xr-xtest/storage/server.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/storage/server.js b/test/storage/server.js
index efc1e1d6c0..249c6a124b 100755
--- a/test/storage/server.js
+++ b/test/storage/server.js
@@ -2,6 +2,7 @@
/* jshint node: true */
'use strict';
+var fs = require('fs');
var express = require('express');
var app = express();
@@ -106,6 +107,7 @@ var server = app.listen(3000, function () {
if (process.argv[2]) {
// Allow the test to continue running.
- process.stdin.write("Go!\n");
+ fs.write(+process.argv[2], 'OK');
+ fs.close(+process.argv[2]);
}
});