Merge branch 'upstream'

Former-commit-id: c961326ec42c28872b5ee4db21f4efca5fd83730
This commit is contained in:
Xamarin Public Jenkins (auto-signing) 2019-04-22 22:45:38 +00:00
commit 0d1f7374e2
52 changed files with 64 additions and 47 deletions

View File

@ -1 +1 @@
abefaf5dbffc4e80018b084cd325822f1344cf89
73e8c9d278acfcd5e39a2e522cbcfc96598a7d01

View File

@ -1 +1 @@
b98bb12c4d49d9270bb87247aae383eb7df49a04
acd5c22d85e3db995bbb3bcfa3b6b4d9d7c4af96

View File

@ -548,6 +548,12 @@ def iterate_dir(dir, with_links=False, with_dirs=False, summary=False):
dirs = dirs + 1
if with_dirs:
yield root
if with_dirs and with_links:
for subdir in subdirs:
path = os.path.join(root, subdir)
if os.path.islink(path):
links = links + 1
yield path
for file in filelist:
path = os.path.join(root, file)
if os.path.islink(path):

View File

@ -41,7 +41,7 @@ static partial class Consts
// Use these assembly version constants to make code more maintainable.
//
public const string MonoVersion = "6.0.0.184";
public const string MonoVersion = "6.0.0.190";
public const string MonoCompany = "Mono development team";
public const string MonoProduct = "Mono Common Language Infrastructure";
public const string MonoCopyright = "(c) Various Mono authors";

View File

@ -658,6 +658,15 @@ namespace MonoTests.System.Reflection
Assert.AreEqual (10, pi2.GetGetMethod ().Invoke (10, null));
}
[Test]
public void NullableTestsStatic ()
{
Nullable<Double> val = new Nullable<Double>(new Double());
MethodInfo mi = typeof (Nullable<Double>).GetMethod ("op_Implicit");
object obj = val;
mi.Invoke(null, new[] { obj });
}
public static void foo_generic<T> ()
{
}

View File

@ -0,0 +1,2 @@
../../../external/corefx/src/System.IO.FileSystem/tests/File/Copy.cs
../../../external/corefx/src/System.IO.FileSystem/tests/FileInfo/CopyTo.cs

View File

@ -1 +1 @@
63b74fddf7c80391af92f886885a8acc83e7192c
100bbcb5886d1d2f421e6f14e9a7ac65a6c46a77

View File

@ -1 +1 @@
d803005b601b49f58cbc88c63dd40a0a01747f09
f0b284f1eef9c4ad53e46eb667569acbc301c8eb

View File

@ -1 +1 @@
25eb9c458720e5471a610d30cb872cb9707e3428
c97fa81a52e33e709aba8f6d48ce0e15ba59648e

View File

@ -1 +1 @@
5bd622ea101e94fc66e04c59f8eaff4fd4a313d3
2b37718af0ab691d006d4153f926d0ad3e61c24a

View File

@ -1 +1 @@
7a9505f597fb6a1834a18d39d25346069ea8d8a1
3d8a09adb5c438493dd8010212b9a1114f3890f1

View File

@ -1 +1 @@
013ae33b3c5b61fd8a7129e4806417c2f4505293
885e28e998117d99418431439fdcefda35b945dd

View File

@ -1 +1 @@
4406618a20b8b096b0c3bea66c9b71c7b6fd10e7
ab35bec467401fde399b5f27fac9b8d6df19eaca

View File

@ -1 +1 @@
63b74fddf7c80391af92f886885a8acc83e7192c
100bbcb5886d1d2f421e6f14e9a7ac65a6c46a77

View File

@ -1 +1 @@
d803005b601b49f58cbc88c63dd40a0a01747f09
f0b284f1eef9c4ad53e46eb667569acbc301c8eb

View File

@ -1 +1 @@
25eb9c458720e5471a610d30cb872cb9707e3428
c97fa81a52e33e709aba8f6d48ce0e15ba59648e

View File

@ -1 +1 @@
5bd622ea101e94fc66e04c59f8eaff4fd4a313d3
2b37718af0ab691d006d4153f926d0ad3e61c24a

View File

@ -1 +1 @@
7a9505f597fb6a1834a18d39d25346069ea8d8a1
3d8a09adb5c438493dd8010212b9a1114f3890f1

Some files were not shown because too many files have changed in this diff Show More