File tree 3 files changed +14
-9
lines changed
3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -176,8 +176,13 @@ Function PackageTests()
176
176
177
177
Copy-Item $outputFolder \* .dll - Destination $testPackageFolder - Force
178
178
Copy-Item $outputFolder \* .pdb - Destination $testPackageFolder - Force
179
-
180
179
Copy-Item .\* .sh - Destination $testPackageFolder - Force
180
+
181
+ Write-Host Creating MDBs for tests
182
+ get-childitem $testPackageFolder - File - Include @ (" *.exe" , " *.dll" ) - Exclude @ (" MediaInfo.dll" , " sqlite3.dll" ) - Recurse | foreach ($_ ) {
183
+ Write-Host " Creating .mdb for $_ "
184
+ & " tools\pdb2mdb\pdb2mdb.exe" $_.fullname
185
+ }
181
186
182
187
get-childitem $testPackageFolder - File - Filter * log.config | foreach ($_ ) {remove-item $_.fullname }
183
188
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ EXCLUDE="-exclude:Windows -include:IntegrationTest"
2
2
TESTDIR=" ."
3
3
NUNIT=" $TESTDIR /NUnit.Runners.2.6.1/tools/nunit-console-x86.exe"
4
4
5
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Api.Result.xml $TESTDIR /NzbDrone.Api.Test.dll
6
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Core.Result.xml $TESTDIR /NzbDrone.Core.Test.dll
7
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Integration.Result.xml $TESTDIR /NzbDrone.Integration.Test.dll
5
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Api.Result.xml $TESTDIR /NzbDrone.Api.Test.dll
6
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Core.Result.xml $TESTDIR /NzbDrone.Core.Test.dll
7
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Integration.Result.xml $TESTDIR /NzbDrone.Integration.Test.dll
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ EXCLUDE="-exclude:Windows,IntegrationTest"
2
2
TESTDIR=" ."
3
3
NUNIT=" $TESTDIR /NUnit.Runners.2.6.1/tools/nunit-console-x86.exe"
4
4
5
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Api.Result.xml $TESTDIR /NzbDrone.Api.Test.dll
6
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Common.Result.xml $TESTDIR /NzbDrone.Common.Test.dll
7
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Core.Result.xml $TESTDIR /NzbDrone.Core.Test.dll
8
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Host.Result.xml $TESTDIR /NzbDrone.Host.Test.dll
9
- mono $NUNIT $EXCLUDE -xml:NzbDrone.Libraries.Result.xml $TESTDIR /NzbDrone.Libraries.Test.dll
5
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Api.Result.xml $TESTDIR /NzbDrone.Api.Test.dll
6
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Common.Result.xml $TESTDIR /NzbDrone.Common.Test.dll
7
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Core.Result.xml $TESTDIR /NzbDrone.Core.Test.dll
8
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Host.Result.xml $TESTDIR /NzbDrone.Host.Test.dll
9
+ mono --debug $NUNIT $EXCLUDE -xml:NzbDrone.Libraries.Result.xml $TESTDIR /NzbDrone.Libraries.Test.dll
You can’t perform that action at this time.
0 commit comments