Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-513.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fad71eb113b4f4fd3501f29603a6f3ef1fd7339a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Compiler options: -linkresource:test-513.cs -linkresource:test-512.cs -linkresource:./test-511.cs,test

using System;
using System.IO;
using System.Reflection;

public class Test
{
	public static int Main ()
	{
		Assembly a = Assembly.GetExecutingAssembly ();
		string[] resourceNames = a.GetManifestResourceNames ();
		if (resourceNames.Length != 3)
			return 1;
		if (resourceNames[0] != "test-513.cs")
			return 2;
		if (resourceNames[1] != "test-512.cs")
			return 3;
		if (resourceNames[2] != "test")
			return 4;
		FileStream f = a.GetFile ("test-513.cs");
		if (f == null)
			return 5;
		f = a.GetFile ("test-512.cs");
		if (f == null)
			return 6;
		f = a.GetFile ("test-511.cs");
		if (f == null)
			return 7;
		f = a.GetFile ("test");
		if (f != null)
			return 8;
		Stream s = a.GetManifestResourceStream ("test-513.cs");
		if (s == null)
			return 9;
		s = a.GetManifestResourceStream ("test-512.cs");
		if (s == null)
			return 10;
		s = a.GetManifestResourceStream ("test");
		if (s == null)
			return 11;
		s = a.GetManifestResourceStream ("test-511.cs");
		if (s != null)
			return 12;
		
		return 0;
	}
}