Imported Upstream version 6.0.0.190
Former-commit-id: e193e16b440728be216d156a01a02450e7882323
This commit is contained in:
parent
dec0eff6dd
commit
b8f7d9129e
@ -1 +1 @@
|
|||||||
abefaf5dbffc4e80018b084cd325822f1344cf89
|
73e8c9d278acfcd5e39a2e522cbcfc96598a7d01
|
@ -1 +1 @@
|
|||||||
b98bb12c4d49d9270bb87247aae383eb7df49a04
|
acd5c22d85e3db995bbb3bcfa3b6b4d9d7c4af96
|
6
external/bockbuild/bockbuild/util/util.py
vendored
6
external/bockbuild/bockbuild/util/util.py
vendored
@ -548,6 +548,12 @@ def iterate_dir(dir, with_links=False, with_dirs=False, summary=False):
|
|||||||
dirs = dirs + 1
|
dirs = dirs + 1
|
||||||
if with_dirs:
|
if with_dirs:
|
||||||
yield root
|
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:
|
for file in filelist:
|
||||||
path = os.path.join(root, file)
|
path = os.path.join(root, file)
|
||||||
if os.path.islink(path):
|
if os.path.islink(path):
|
||||||
|
@ -41,7 +41,7 @@ static partial class Consts
|
|||||||
// Use these assembly version constants to make code more maintainable.
|
// 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 MonoCompany = "Mono development team";
|
||||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||||
public const string MonoCopyright = "(c) Various Mono authors";
|
public const string MonoCopyright = "(c) Various Mono authors";
|
||||||
|
@ -658,6 +658,15 @@ namespace MonoTests.System.Reflection
|
|||||||
Assert.AreEqual (10, pi2.GetGetMethod ().Invoke (10, null));
|
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> ()
|
public static void foo_generic<T> ()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,2 @@
|
|||||||
|
../../../external/corefx/src/System.IO.FileSystem/tests/File/Copy.cs
|
||||||
|
../../../external/corefx/src/System.IO.FileSystem/tests/FileInfo/CopyTo.cs
|
@ -1 +1 @@
|
|||||||
63b74fddf7c80391af92f886885a8acc83e7192c
|
100bbcb5886d1d2f421e6f14e9a7ac65a6c46a77
|
@ -1 +1 @@
|
|||||||
d803005b601b49f58cbc88c63dd40a0a01747f09
|
f0b284f1eef9c4ad53e46eb667569acbc301c8eb
|
@ -1 +1 @@
|
|||||||
25eb9c458720e5471a610d30cb872cb9707e3428
|
c97fa81a52e33e709aba8f6d48ce0e15ba59648e
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
5bd622ea101e94fc66e04c59f8eaff4fd4a313d3
|
2b37718af0ab691d006d4153f926d0ad3e61c24a
|
@ -1 +1 @@
|
|||||||
7a9505f597fb6a1834a18d39d25346069ea8d8a1
|
3d8a09adb5c438493dd8010212b9a1114f3890f1
|
@ -1 +1 @@
|
|||||||
013ae33b3c5b61fd8a7129e4806417c2f4505293
|
885e28e998117d99418431439fdcefda35b945dd
|
@ -1 +1 @@
|
|||||||
4406618a20b8b096b0c3bea66c9b71c7b6fd10e7
|
ab35bec467401fde399b5f27fac9b8d6df19eaca
|
@ -1 +1 @@
|
|||||||
63b74fddf7c80391af92f886885a8acc83e7192c
|
100bbcb5886d1d2f421e6f14e9a7ac65a6c46a77
|
@ -1 +1 @@
|
|||||||
d803005b601b49f58cbc88c63dd40a0a01747f09
|
f0b284f1eef9c4ad53e46eb667569acbc301c8eb
|
@ -1 +1 @@
|
|||||||
25eb9c458720e5471a610d30cb872cb9707e3428
|
c97fa81a52e33e709aba8f6d48ce0e15ba59648e
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
5bd622ea101e94fc66e04c59f8eaff4fd4a313d3
|
2b37718af0ab691d006d4153f926d0ad3e61c24a
|
@ -1 +1 @@
|
|||||||
7a9505f597fb6a1834a18d39d25346069ea8d8a1
|
3d8a09adb5c438493dd8010212b9a1114f3890f1
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user