summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTijoy Tom Kalathiparambil <tijoytk@microsoft.com>2016-04-04 16:48:39 -0700
committerTijoy Tom Kalathiparambil <tijoytk@microsoft.com>2016-04-04 16:48:39 -0700
commit9bf6d5f069e5c6ebd57edc8b37bc52ce21a4f25d (patch)
treee6e1fd482b0e66629831d31ebb7895a2d7486318 /tests
parentbd05196930765de1e2ce2518904be1357128a578 (diff)
downloadcoreclr-9bf6d5f069e5c6ebd57edc8b37bc52ce21a4f25d.tar.gz
coreclr-9bf6d5f069e5c6ebd57edc8b37bc52ce21a4f25d.tar.bz2
coreclr-9bf6d5f069e5c6ebd57edc8b37bc52ce21a4f25d.zip
Disabling the object as variant in struct marshalling
since it fails outside of windows.
Diffstat (limited to 'tests')
-rw-r--r--tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs32
-rw-r--r--tests/testsFailingOutsideWindows.txt1
2 files changed, 17 insertions, 16 deletions
diff --git a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
index fee7af8687..3c126158d0 100644
--- a/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
+++ b/tests/src/Interop/MarshalAPI/OffsetOf/OffsetOf.cs
@@ -315,19 +315,21 @@ public class OffsetTest
Assert.Fail(string.Format("Unexpected value '{0}' for IntPtr.Size", IntPtr.Size));
}
}
-
- public static int Main(String[] args) {
- TestFieldAlignment_Variant();
- TestFieldAlignment_Guid();
- TestFieldAlignment_Decimal();
- TestFieldAlignment();
- TestExplicitLayout();
- ClassSequentialField();
- NullParameter();
- NonExistField();
- NoLayoutClass();
- StructField();
- ClassExplicitField();
- return 100;
- }
+
+ public static int Main(String[] args)
+ {
+ //https://github.com/dotnet/coreclr/issues/2075
+ //TestFieldAlignment_Variant();
+ TestFieldAlignment_Guid();
+ TestFieldAlignment_Decimal();
+ TestFieldAlignment();
+ TestExplicitLayout();
+ ClassSequentialField();
+ NullParameter();
+ NonExistField();
+ NoLayoutClass();
+ StructField();
+ ClassExplicitField();
+ return 100;
+ }
}
diff --git a/tests/testsFailingOutsideWindows.txt b/tests/testsFailingOutsideWindows.txt
index 7c1a38c04d..d9f09a992f 100644
--- a/tests/testsFailingOutsideWindows.txt
+++ b/tests/testsFailingOutsideWindows.txt
@@ -173,7 +173,6 @@ JIT/Regression/Dev11/External/dev11_145295/CSharpPart/CSharpPart.sh
Interop/ArrayMarshalling/ByValArray/MarshalArrayByValTest/MarshalArrayByValTest.sh
Interop/StringMarshalling/LPSTR/LPSTRTest/LPSTRTest.sh
Interop/StringMarshalling/LPTSTR/LPTSTRTest/LPTSTRTest.sh
-Interop/MarshalAPI/OffsetOf/OffsetOf/OffsetOf.sh
Interop/MarshalAPI/Miscellaneous/MarshalClassTests/MarshalClassTests.sh
GC/API/WeakReference/Finalize2/Finalize2.sh
GC/API/WeakReference/NullHandle/NullHandle.sh