Skip to content

Commit f5ddbcf

Browse files
committed
Rename tests/ironpython to tests/IronPython.Tests
1 parent 3352242 commit f5ddbcf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+5
-5
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ packages/
1717
__pycache__/
1818

1919
# Generated files
20-
tests/ironpython/TestResults/
21-
tests/ironpython/runsettings.*.xml
20+
tests/IronPython.Tests/TestResults/
21+
tests/IronPython.Tests/runsettings.*.xml
2222

2323
# Created by CPython tests
2424
src/core/IronPython.StdLib/Lib/lib2to3/Grammar*.pickle

IronPython.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronPython.Wpf", "src\exten
1111
EndProject
1212
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronPython.Console", "src\platforms\IronPython.Console\IronPython.Console.csproj", "{811AC32C-11F3-4ED8-92A7-A7E39C2BB704}"
1313
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronPython.Tests", "tests\ironpython\IronPython.Tests.csproj", "{B6B42537-07F8-4F6C-A99A-B155CAEB124E}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronPython.Tests", "tests\IronPython.Tests\IronPython.Tests.csproj", "{B6B42537-07F8-4F6C-A99A-B155CAEB124E}"
1515
EndProject
1616
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IronPython.Console.Host", "src\platforms\IronPython.Console.Host\IronPython.Console.Host.csproj", "{81DA19C7-4FEC-47E7-981B-D9310D549F95}"
1717
EndProject

make.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function GenerateRunSettings([String] $framework, [String] $platform, [String] $
7575
$doc.AppendChild($dec) | Out-Null
7676

7777
$runSettings = $doc.CreateElement("RunSettings")
78-
78+
7979
$runConfiguration = $doc.CreateElement("RunConfiguration")
8080
$runSettings.AppendChild($runConfiguration) | Out-Null
8181
if ($platform) {
@@ -182,7 +182,7 @@ function Test([String] $target, [String] $configuration, [String[]] $frameworks,
182182
$runSettings = GenerateRunSettings $framework $platform $configuration $runIgnored
183183

184184
function createTask($filtername, $filter) {
185-
[Object[]] $args = @("$_BASEDIR/tests/ironpython/IronPython.Tests.csproj", '-f', "$framework", '-o', "$_BASEDIR/bin/$configuration/$framework", '-c', "$configuration", '--no-build', '-v', 'n', '-l', "trx;LogFileName=$filtername-$framework-$configuration-result.trx", '-s', "$runSettings", "--filter=$filter");
185+
[Object[]] $args = @("$_BASEDIR/tests/IronPython.Tests/IronPython.Tests.csproj", '-f', "$framework", '-o', "$_BASEDIR/bin/$configuration/$framework", '-c', "$configuration", '--no-build', '-v', 'n', '-l', "trx;LogFileName=$filtername-$framework-$configuration-result.trx", '-s', "$runSettings", "--filter=$filter");
186186
Write-Host "Enqueue [$framework $filtername]:"
187187
Write-Host "dotnet test $args"
188188
Write-Host
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)