You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.344
Former-commit-id: 609085c14e6ad2a66429d180056034e93c0547d2
This commit is contained in:
parent
94b2861243
commit
62edeef69b
@ -430,6 +430,7 @@ public class Tests : TestsBase, ITest2
|
||||
ss_recursive2 (1);
|
||||
ss_recursive_chaotic ();
|
||||
ss_fp_clobber ();
|
||||
ss_no_frames ();
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
@ -679,6 +680,25 @@ public class Tests : TestsBase, ITest2
|
||||
public static void ss_fp_clobber_2 (double d) {
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public static void ss_no_frames () {
|
||||
Action a = ss_no_frames_2;
|
||||
var ar = a.BeginInvoke (null, null);
|
||||
ar.AsyncWaitHandle.WaitOne ();
|
||||
// Avoid waiting every time this runs
|
||||
if (static_i == 56)
|
||||
Thread.Sleep (200);
|
||||
ss_no_frames_3 ();
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public static void ss_no_frames_2 () {
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public static void ss_no_frames_3 () {
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public static bool is_even (int i) {
|
||||
return i % 2 == 0;
|
||||
|
Reference in New Issue
Block a user