summaryrefslogtreecommitdiff
path: root/test/disabled/test-eio-race2.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2015-06-23 14:29:38 -0700
committerRich Trott <rtrott@gmail.com>2015-06-25 11:21:41 -0700
commit856c11f8c8667b39a69455e42f9af493b37816fc (patch)
treedceb6a46ade3dd55a7be2333d10d5a6b08e5fb68 /test/disabled/test-eio-race2.js
parent4d5089e1817edf8b0125d8f91b5a8fc32d13263b (diff)
downloadnode-new-856c11f8c8667b39a69455e42f9af493b37816fc.tar.gz
test: purge stale disabled tests
Tests in the disabled directory are not used by Makefile nor by the CI. Other than a single 2015 commit that puts 'use strict' in each test, many of them haven't been touched in years. This removes all the disabled tests that have been unmodified since 2011 (with the exception of the 'use strict' modification mentioned above). PR-URL: https://github.com/nodejs/io.js/pull/2045 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Evan Lucas <evanlucas@me.com>
Diffstat (limited to 'test/disabled/test-eio-race2.js')
-rw-r--r--test/disabled/test-eio-race2.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/test/disabled/test-eio-race2.js b/test/disabled/test-eio-race2.js
deleted file mode 100644
index 16c0468775..0000000000
--- a/test/disabled/test-eio-race2.js
+++ /dev/null
@@ -1,23 +0,0 @@
-'use strict';
-var common = require('../common');
-var assert = require('assert');
-var path = require('path');
-var testTxt = path.join(common.fixturesDir, 'x.txt');
-var fs = require('fs');
-
-setTimeout(function() {
- // put this in a timeout, just so it doesn't get bunched up with the
- // require() calls..
- var N = 30;
- for (var i = 0; i < N; i++) {
- console.log('start ' + i);
- fs.readFile(testTxt, function(err, data) {
- if (err) {
- console.log('error! ' + e);
- process.exit(1);
- } else {
- console.log('finish');
- }
- });
- }
-}, 100);