mirror of
https://github.com/electron/node-gyp.git
synced 2025-08-15 12:58:19 +02:00
win: make VS path match case-insensitive
Fixes: https://github.com/nodejs/node-gyp/issues/1805 PR-URL: https://github.com/nodejs/node-gyp/pull/1806 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Bartosz Sosnowski <bartosz@janeasystems.com>
This commit is contained in:
parent
e40c99e283
commit
656117cc4a
2 changed files with 36 additions and 3 deletions
|
@ -525,7 +525,7 @@ test('look for VS2019 by version number', function (t) {
|
|||
finder.findVisualStudio()
|
||||
})
|
||||
|
||||
test('look for VS2017 by installation path', function (t) {
|
||||
test('look for VS2019 by installation path', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
const finder = new TestVisualStudioFinder(semverV1,
|
||||
|
@ -540,6 +540,21 @@ test('look for VS2017 by installation path', function (t) {
|
|||
finder.findVisualStudio()
|
||||
})
|
||||
|
||||
test('msvs_version match should be case insensitive', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
const finder = new TestVisualStudioFinder(semverV1,
|
||||
'c:\\program files (x86)\\microsoft visual studio\\2019\\BUILDTOOLS',
|
||||
(err, info) => {
|
||||
t.strictEqual(err, null)
|
||||
t.deepEqual(info.path,
|
||||
'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools')
|
||||
})
|
||||
|
||||
allVsVersions(t, finder)
|
||||
finder.findVisualStudio()
|
||||
})
|
||||
|
||||
test('latest version should be found by default', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
|
@ -568,6 +583,22 @@ test('run on a usable VS Command Prompt', function (t) {
|
|||
finder.findVisualStudio()
|
||||
})
|
||||
|
||||
test('VCINSTALLDIR match should be case insensitive', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
process.env.VCINSTALLDIR =
|
||||
'c:\\program files (x86)\\microsoft visual studio\\2019\\BUILDTOOLS\\VC'
|
||||
|
||||
const finder = new TestVisualStudioFinder(semverV1, null, (err, info) => {
|
||||
t.strictEqual(err, null)
|
||||
t.deepEqual(info.path,
|
||||
'C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools')
|
||||
})
|
||||
|
||||
allVsVersions(t, finder)
|
||||
finder.findVisualStudio()
|
||||
})
|
||||
|
||||
test('run on a unusable VS Command Prompt', function (t) {
|
||||
t.plan(2)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue