- Notifications
You must be signed in to change notification settings - Fork750
Domain reload test cases fixes#1287
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
lostmsu merged 62 commits intopythonnet:masterfromUnity-Technologies:domain-reload-test-cases-fixesJan 7, 2021
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
62 commits Select commitHold shift + click to select a range
fc7da1d
Adds test cases for member changes during a domain reload
BadSingleton72fafdd
!fixup add the project to the solution files
BadSingleton20861b2
Add more test cases
BadSingleton2253ef3
Merge remote-tracking branch 'upstream/master' into domain-reload-tes…
BadSingleton635edac
Make the tests run as netcoreapp
BadSingleton0ee931e
Remove stray colon
BadSingleton3dad96e
Rework the serialization of reflected types
BadSingleton90a81f3
Call PyType_Modified after modifying the type
BadSingleton10276f1
Some code review changes
BadSingleton4d0e2ce
fixup! Some code review changes
BadSingleton02fa245
Remove hungarian notation from Maybe* types
BadSingleton91c881c
Check the type of the exception before ignoring it
BadSingleton284e8e1
Check for validity, don't throw
BadSingletonfe96781
Refactor the member binding logic of ClassManager
BadSingleton6ff9e0b
Include info about why deserialization failed in Maybe*
BadSingleton4d2d05b
improve deserialization resolution of ref, out and in parameters
BadSingleton5f061bc
Clean up the project and solution files
BadSingleton3adc559
Merge branch 'master' into domain-reload-test-cases
BadSingletone8543cf
Rework the serialization of reflected types
BadSingleton61b0d8c
Call PyType_Modified after modifying the type
BadSingletonc8bacf3
Some code review changes
BadSingletoncde5c23
fixup! Some code review changes
BadSingletona956773
Remove hungarian notation from Maybe* types
BadSingletonee3b391
Check the type of the exception before ignoring it
BadSingleton9b4d5f9
Check for validity, don't throw
BadSingletona2f3294
Refactor the member binding logic of ClassManager
BadSingleton46dcb9d
Include info about why deserialization failed in Maybe*
BadSingleton10116bb
improve deserialization resolution of ref, out and in parameters
BadSingleton102054e
!fixup leftover error from the rebase
BadSingleton329de5d
Add fixes and test for nested classes
BadSingletonf97262b
Code review fixes
BadSingletonceb3fab
Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton2d6ae4c
fixup! Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton16a39a6
fixup! Code review fixes
BadSingletonace340d
Fix build failures on non-windows
BadSingleton78a8088
fixup! Fix build failures on non-windows
BadSingleton3232f79
Merge remote-tracking branch 'origin/domain-reload-test-cases-fixes' …
BadSingleton87287a5
Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton44b4800
Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton79516f1
Code review fixes
BadSingleton421f665
Merge remote-tracking branch 'upstream/master' into domain-reload-tes…
BadSingleton5e4c976
(WIP) rework project structure
BadSingleton9d1991a
Merge remote-tracking branch 'upstream/master' into domain-reload-tes…
BadSingletonbcf0cd6
Rework the projects file structure
BadSingleton73e5a6b
Check teh return value of PyDict_DelItemString
BadSingleton510a7ae
netstandard.dll is a Facade Library
BadSingleton21eb14c
Remove TestClassReference
BadSingleton59e81e2
Test runner docs fixes
BadSingleton1383b5a
Skip the domain reload tests on macos
BadSingletonfbc06ef
fixup! Skip the domain reload tests on macos
BadSingletonb3e86da
Update ISSUE_TEMPLATE.md
filmor0b027c6
refactoring in CreateSubType
lostmsub4533c4
allocate space for GCHandle in instances of CLR Metatype (which are t…
lostmsu0a3f044
classderived: handle tp_dealloc called after tp_clear
lostmsu639236a
a few extra assertions
lostmsu3069285
fixed crash in finalizer of CLR types defined in Python, that survive…
lostmsu5c14aad
Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton00c19d5
Merge branch 'master' into domain-reload-test-cases-fixes
BadSingleton833e836
Fix break introduced by merge
BadSingleton62ae107
Code review fixes
BadSingletoneedbae5
Merge remote-tracking branch 'upstream/master' into domain-reload-tes…
BadSingleton73f39bc
Add the PID of the test runner
BadSingletonFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
14 changes: 14 additions & 0 deletionspythonnet.sln
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletionssrc/domain_tests/App.config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
</configuration> |
26 changes: 26 additions & 0 deletionssrc/domain_tests/Python.DomainReloadTests.csproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net472</TargetFrameworks> | ||
<OutputPath>bin\</OutputPath> | ||
<OutputType>Exe</OutputType> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\runtime\Python.Runtime.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" /> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.