File tree 2 files changed +17
-11
lines changed
2 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ Module._findPath = function(request, paths) {
143
143
// For each path
144
144
for ( var i = 0 , PL = paths . length ; i < PL ; i ++ ) {
145
145
// Don't search further if path doesn't exist
146
- if ( paths [ i ] && internalModuleStat ( paths [ i ] ) < 1 ) continue ;
146
+ if ( paths [ i ] && internalModuleStat ( path . _makeLong ( paths [ i ] ) ) < 1 ) continue ;
147
147
var basePath = path . resolve ( paths [ i ] , request ) ;
148
148
var filename ;
149
149
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
- var common = require ( '../common' ) ;
3
- var fs = require ( 'fs' ) ;
4
- var path = require ( 'path' ) ;
5
- var assert = require ( 'assert' ) ;
2
+ const common = require ( '../common' ) ;
3
+ const fs = require ( 'fs' ) ;
4
+ const path = require ( 'path' ) ;
6
5
7
6
// make a path that is more than 260 chars long.
8
- var fileNameLen = Math . max ( 261 - common . tmpDir . length - 1 , 1 ) ;
9
- var fileName = path . join ( common . tmpDir , new Array ( fileNameLen + 1 ) . join ( 'x' ) ) ;
10
- var fullPath = path . resolve ( fileName ) ;
7
+ const dirNameLen = Math . max ( 260 - common . tmpDir . length , 1 ) ;
8
+ const dirName = path . join ( common . tmpDir , 'x' . repeat ( dirNameLen ) ) ;
9
+ const fullDirPath = path . resolve ( dirName ) ;
10
+
11
+ const indexFile = path . join ( fullDirPath , 'index.js' ) ;
12
+ const otherFile = path . join ( fullDirPath , 'other.js' ) ;
11
13
12
14
common . refreshTmpDir ( ) ;
13
- fs . writeFileSync ( fullPath , 'module.exports = 42;' ) ;
14
15
15
- assert . equal ( require ( fullPath ) , 42 ) ;
16
+ fs . mkdirSync ( fullDirPath ) ;
17
+ fs . writeFileSync ( indexFile , 'require("./other");' ) ;
18
+ fs . writeFileSync ( otherFile , '' ) ;
19
+
20
+ require ( indexFile ) ;
21
+ require ( otherFile ) ;
16
22
17
- fs . unlinkSync ( fullPath ) ;
23
+ common . refreshTmpDir ( ) ;
You can’t perform that action at this time.
0 commit comments