mirror of https://github.com/lukechilds/node.git
Browse Source
Fix a regression that was introduced in commit 1bbf8d0
("lib: speed up
require(), phase 2") where file paths with Unicode characters fail to
load on Windows.
Fixes: https://github.com/nodejs/node/issues/2236
PR-URL: https://github.com/nodejs/node/pull/2377
Reviewed-By: Bert Belder <bertbelder@gmail.com>
v4.0.0-rc
Ben Noordhuis
10 years ago
2 changed files with 40 additions and 7 deletions
@ -0,0 +1,16 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
const common = require('../common'); |
||||
|
const assert = require('assert'); |
||||
|
const fs = require('fs'); |
||||
|
const path = require('path'); |
||||
|
|
||||
|
common.refreshTmpDir(); |
||||
|
|
||||
|
const dirname = path.join(common.tmpDir, '\u4e2d\u6587\u76ee\u5f55'); |
||||
|
fs.mkdirSync(dirname); |
||||
|
fs.writeFileSync(path.join(dirname, 'file.js'), 'module.exports = 42;'); |
||||
|
fs.writeFileSync(path.join(dirname, 'package.json'), |
||||
|
JSON.stringify({ name: 'test', main: 'file.js' })); |
||||
|
assert.equal(require(dirname), 42); |
||||
|
assert.equal(require(path.join(dirname, 'file.js')), 42); |
Loading…
Reference in new issue