You've already forked linux-packaging-mono
Imported Upstream version 4.3.2.467
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
This commit is contained in:
@@ -13,35 +13,35 @@ public class Test
|
||||
if (resourceNames.Length != 3)
|
||||
return 1;
|
||||
if (resourceNames[0] != "test-513.cs")
|
||||
return 1;
|
||||
return 2;
|
||||
if (resourceNames[1] != "test-512.cs")
|
||||
return 1;
|
||||
return 3;
|
||||
if (resourceNames[2] != "test")
|
||||
return 1;
|
||||
return 4;
|
||||
FileStream f = a.GetFile ("test-513.cs");
|
||||
if (f == null)
|
||||
return 1;
|
||||
return 5;
|
||||
f = a.GetFile ("test-512.cs");
|
||||
if (f == null)
|
||||
return 1;
|
||||
return 6;
|
||||
f = a.GetFile ("test-511.cs");
|
||||
if (f == null)
|
||||
return 1;
|
||||
return 7;
|
||||
f = a.GetFile ("test");
|
||||
if (f != null)
|
||||
return 1;
|
||||
return 8;
|
||||
Stream s = a.GetManifestResourceStream ("test-513.cs");
|
||||
if (s == null)
|
||||
return 1;
|
||||
return 9;
|
||||
s = a.GetManifestResourceStream ("test-512.cs");
|
||||
if (s == null)
|
||||
return 1;
|
||||
return 10;
|
||||
s = a.GetManifestResourceStream ("test");
|
||||
if (s == null)
|
||||
return 1;
|
||||
return 11;
|
||||
s = a.GetManifestResourceStream ("test-511.cs");
|
||||
if (s != null)
|
||||
return 1;
|
||||
return 12;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user