Skip to content

Commit

Permalink
2005-02-15 Zoltan Varga <[email protected]>
Browse files Browse the repository at this point in the history
	* pinvoke13.cs: Fix test.

svn path=/trunk/mono/; revision=40709
  • Loading branch information
vargaz committed Feb 15, 2005
1 parent 701f3cc commit c79d1b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions mono/tests/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
2005-02-15 Zoltan Varga <[email protected]>

* pinvoke13.cs: Fix test.

* libtest.c pinvoke13.cs: Fix test on big-endian machines.

* pinvoke3.cs: Remove an error handling test which no longer fails in
Expand Down
4 changes: 2 additions & 2 deletions mono/tests/pinvoke13.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ public static int Main (String[] args) {
res = NameManglingAnsi ("ABC");
if (res != 198)
return 1;
res = NameManglingAnsi ("ABC");
res = NameManglingAnsi2 ("ABC");
if (res != 198)
return 2;
res = NameManglingUnicode ("ABC");
if (res != 198)
return 3;
res = NameManglingUnicode ("ABC");
res = NameManglingUnicode2 ("ABC");
if (res != 198)
return 4;

Expand Down

0 comments on commit c79d1b9

Please sign in to comment.