Imported Upstream version 5.16.0.113
Former-commit-id: 2bcc375d35c32f5e7df9471e4d4c4ad1a42644a2
This commit is contained in:
parent
14c2d0c196
commit
2f73666fb6
@ -1 +1 @@
|
||||
9a85c2b78d9bb83fa7696ea4bd6e69f60a5e4396
|
||||
1c679289c0519f58db7504ac25a405796f601659
|
@ -1 +1 @@
|
||||
3299023e93bd9b2e83fd553a42c304cf1c3af886
|
||||
63a53a86e8b66e829951738958530ddcaa7b0020
|
@ -34,7 +34,7 @@ static class Consts
|
||||
// Use these assembly version constants to make code more maintainable.
|
||||
//
|
||||
|
||||
public const string MonoVersion = "5.16.0.112";
|
||||
public const string MonoVersion = "5.16.0.113";
|
||||
public const string MonoCompany = "Mono development team";
|
||||
public const string MonoProduct = "Mono Common Language Infrastructure";
|
||||
public const string MonoCopyright = "(c) Various Mono authors";
|
||||
|
@ -1287,6 +1287,22 @@ namespace MonoTests.System.Reflection
|
||||
} catch (NotImplementedException){
|
||||
}
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ExpectedException (typeof (ArgumentException))]
|
||||
public void LoadFileRelativeThrows ()
|
||||
{
|
||||
Assembly.LoadFile (Path.Combine ("non-existent", "relative", "path.dll"));
|
||||
}
|
||||
|
||||
[Test]
|
||||
[ExpectedException (typeof (FileNotFoundException))]
|
||||
public void LoadFileAbsoluteNotFoundThrows ()
|
||||
{
|
||||
// have to use GetFullPath so we get C:\... on Windows
|
||||
var abspath = Path.GetFullPath (Path.Combine ("non-existent", "absolute", "path.dll"));
|
||||
Assembly.LoadFile (abspath);
|
||||
}
|
||||
}
|
||||
|
||||
public class TestDefinedTypes
|
||||
|
@ -1 +1 @@
|
||||
96261d9f61cd487aeaf7a05876af2aa20870995b
|
||||
76f7b30f3b772705adeccf5ae5122298373595f0
|
@ -1 +1 @@
|
||||
aea62df15a18b6b9800e2a4b494eab4610f1bbe2
|
||||
df1531febfddb37fb0e38c53a36c814f6e4b726e
|
Binary file not shown.
@ -1 +1 @@
|
||||
250a739352abc0a44dbab31d1d028ca62ff2c8f1
|
||||
8226ad7568af72483e988ca9e9fc4bc890138e8c
|
@ -1 +1 @@
|
||||
535cc5a5c013757daeb6350daae0a53185996cb8
|
||||
d8f0c4be13ec04447e671c62891f2ebc930392be
|
@ -1 +1 @@
|
||||
e4ef359b8f74b1150796882b81bd1217c79cf089
|
||||
28718cf701fa008ca5f23d78b4eccc8e9d6630fa
|
@ -1 +1 @@
|
||||
67c414f79adeff3f388a71f61069df40792a3964
|
||||
58502f5a6be5d68c84a091c65626ac3e6e44d0cd
|
@ -1 +1 @@
|
||||
0167f7ae83d1b223045058050f59ba119873c852
|
||||
804de4a35a0da1c2767537f64f3aebf210367f4c
|
@ -1 +1 @@
|
||||
96261d9f61cd487aeaf7a05876af2aa20870995b
|
||||
76f7b30f3b772705adeccf5ae5122298373595f0
|
@ -1 +1 @@
|
||||
aea62df15a18b6b9800e2a4b494eab4610f1bbe2
|
||||
df1531febfddb37fb0e38c53a36c814f6e4b726e
|
Binary file not shown.
@ -1 +1 @@
|
||||
250a739352abc0a44dbab31d1d028ca62ff2c8f1
|
||||
8226ad7568af72483e988ca9e9fc4bc890138e8c
|
@ -1 +1 @@
|
||||
535cc5a5c013757daeb6350daae0a53185996cb8
|
||||
d8f0c4be13ec04447e671c62891f2ebc930392be
|
@ -1 +1 @@
|
||||
e4ef359b8f74b1150796882b81bd1217c79cf089
|
||||
28718cf701fa008ca5f23d78b4eccc8e9d6630fa
|
@ -1 +1 @@
|
||||
67c414f79adeff3f388a71f61069df40792a3964
|
||||
58502f5a6be5d68c84a091c65626ac3e6e44d0cd
|
@ -1 +1 @@
|
||||
0167f7ae83d1b223045058050f59ba119873c852
|
||||
804de4a35a0da1c2767537f64f3aebf210367f4c
|
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