Skip to content

Commit

Permalink
Disable a gsharedvt test which depends on async functionality which n…
Browse files Browse the repository at this point in the history
…o longer works.
  • Loading branch information
vargaz committed Jan 17, 2014
1 parent e22bb79 commit 81182d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mono/mini/gshared.cs
Expand Up @@ -1428,7 +1428,8 @@ class VClass {
[MethodImplAttribute (MethodImplOptions.NoInlining)]
public static void call_async<T> (int i, int j) {
Task<T> t = FooAsync<T> (1, 2);
t.RunSynchronously ();
// FIXME: This doesn't work
//t.RunSynchronously ();
}

// In AOT mode, the async infrastructure depends on gsharedvt methods
Expand Down

0 comments on commit 81182d1

Please sign in to comment.