Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
929ab21
Add test case for nested struct with explicit layout
simonrozsival Nov 11, 2021
4574ac3
Add license
simonrozsival Nov 15, 2021
7d49b82
Modify test
simonrozsival Nov 15, 2021
e18281d
Temporarily enable the test in the CI pipeline
simonrozsival Nov 15, 2021
1e40416
Allow running Mac Catalyst builds in App Sandbox
simonrozsival Nov 15, 2021
8c3c9f9
Allow enabling app sandbox for the other Mac Catalyst sample
simonrozsival Nov 15, 2021
586f4e4
Revert "Allow enabling app sandbox for the other Mac Catalyst sample"
simonrozsival Nov 15, 2021
49af5fd
Revert "Allow running Mac Catalyst builds in App Sandbox"
simonrozsival Nov 15, 2021
fd663ef
Add more test cases
simonrozsival Nov 22, 2021
993bf36
WIP: First implementation of the recursive check
simonrozsival Nov 22, 2021
5814633
Merge branch 'main' of github.com:simonrozsival/runtime into simonroz…
simonrozsival Nov 23, 2021
7d072ff
Improve code
simonrozsival Nov 23, 2021
0cd67e2
Fix test case
simonrozsival Nov 23, 2021
017258f
Add more test cases
simonrozsival Nov 23, 2021
cd7cb1d
Unify test cases
simonrozsival Nov 23, 2021
1b1dfed
Bugfixes
simonrozsival Nov 23, 2021
342d6cd
Remove test which behaves differently depending on the target platform
simonrozsival Nov 24, 2021
bb00b01
Remove sequential layout test which behaves differently on Linux and …
simonrozsival Nov 24, 2021
afa00a7
Reorganize test cases
simonrozsival Nov 24, 2021
da553d7
Remove call to mono_class_setup_fields
simonrozsival Nov 24, 2021
699fa7d
Fix embedding detection
simonrozsival Nov 24, 2021
8803138
Fix layout validation for generic structs
simonrozsival Nov 24, 2021
a53285b
Remove unintentional change
simonrozsival Nov 24, 2021
c5e92db
Revert temporary change to the runtime.yml pipeline
simonrozsival Nov 25, 2021
607ab9a
Merge branch 'main' of https://github.com/dotnet/runtime into simonro…
simonrozsival Nov 30, 2021
12d8f52
Code clean-up
simonrozsival Dec 1, 2021
3204414
Revert unrelated change
simonrozsival Dec 1, 2021
6715423
Use getters instead of directly accessing MonoClass fields
simonrozsival Dec 1, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add license
  • Loading branch information
simonrozsival committed Nov 15, 2021
commit 4574ac366a71f18c50ede88e403422fe5182f74a
3 changes: 3 additions & 0 deletions src/tests/Loader/classloader/explicitlayout/misc/nested.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;
using System.Runtime.InteropServices;

Expand Down