+ Added test for Mantis . The issue itself was fixed in the meantime.

git-svn-id: trunk@28035 -
This commit is contained in:
sergei 2014-06-23 03:58:58 +00:00
parent e367ccc0ee
commit 4b5736a381
3 changed files with 25 additions and 0 deletions

2
.gitattributes vendored
View File

@ -13657,6 +13657,7 @@ tests/webtbs/tw20407.pp svneol=native#text/pascal
tests/webtbs/tw2041.pp svneol=native#text/plain
tests/webtbs/tw20421.pp svneol=native#text/pascal
tests/webtbs/tw2045.pp svneol=native#text/plain
tests/webtbs/tw20456.pp svneol=native#text/plain
tests/webtbs/tw2046a.pp svneol=native#text/plain
tests/webtbs/tw20527.pp svneol=native#text/plain
tests/webtbs/tw20557.pp svneol=native#text/pascal
@ -14714,6 +14715,7 @@ tests/webtbs/uw19701.pas svneol=native#text/plain
tests/webtbs/uw19851.pp svneol=native#text/pascal
tests/webtbs/uw2004.inc svneol=native#text/plain
tests/webtbs/uw2040.pp svneol=native#text/plain
tests/webtbs/uw20456.pp svneol=native#text/plain
tests/webtbs/uw20909a.pas svneol=native#text/pascal
tests/webtbs/uw20909b.pas svneol=native#text/pascal
tests/webtbs/uw20940.pp svneol=native#text/pascal

11
tests/webtbs/tw20456.pp Normal file
View File

@ -0,0 +1,11 @@
{ %target=win32,win64,wince }
{ %norun }
program tw20456;
uses uw20456;
begin
Dummy;
end.

12
tests/webtbs/uw20456.pp Normal file
View File

@ -0,0 +1,12 @@
unit uw20456;
interface
procedure Dummy;
implementation
procedure Dummy; external 'who_cares' name '?Dummy';
end.