File: static-constructor.cs

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (97 lines) | stat: -rw-r--r-- 1,903 bytes parent folder | download | duplicates (11)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97

using System;
using System.Reflection;
using System.Threading;

struct A {
	public A (int i) {
	}
}

struct B {
	public B (int i) {
	}
}

public class StaticInitFails {

	public static string s;

	static StaticInitFails () {
		Thread.Sleep (1000);
		throw new Exception ();
		s = "FOO";
	}

	public static void foo () {
		Console.WriteLine (s);
	}
}

public class Tests {
    	static int last = 42;
    	static int burp;

	static Tests () {
		/* 
		 * This is really at test of the compiler: it should init
		 * last before getting here.
		*/
		if (last != 42)
			burp = 5;
		else
			burp = 4;
	}
	public static int Main() {
		if (last != 42)
			return 1;
		if (burp != 4)
			return 1;

		// Regression test for bug #59193 (shared runtime wrappers)
		ConstructorInfo con1 = typeof (A).GetConstructor (BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, new Type [1] { typeof (int) }, null);
		ConstructorInfo con2 = typeof (B).GetConstructor (BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic, null, new Type [1] { typeof (int) }, null);

		con1.Invoke (new Object [] { 0 });
		con2.Invoke (new Object [] { 0 });

		// Test what happens when static initialization throws an exception
		// First start a thread which will trigger the initialization
		Thread t = new Thread (new ThreadStart (Run));
		t.Start ();

		Thread.Sleep (500);

		// While the thread waits, trigger initialization on this thread too so this
		// thread will wait for the other thread to finish initialization
		try {
			Run2 ();
			return 1;
		}
		catch (TypeInitializationException ex) {
		}

		// Try again synchronously
		try {
			Run2 ();
			return 1;
		}
		catch (TypeInitializationException ex) {
		}

		return 0;
	}

	private static void Run () {
		try {
			StaticInitFails.foo ();
		}
		catch (Exception) {
		}
	}

	private static void Run2 () {
		StaticInitFails.foo ();
	}

}