+ added link test for the xext unit

git-svn-id: trunk@49597 -
This commit is contained in:
nickysn 2021-07-11 00:40:08 +00:00
parent 296cdf89ef
commit f0a78f48f3
2 changed files with 10 additions and 0 deletions

1
.gitattributes vendored
View File

@ -10179,6 +10179,7 @@ packages/x11/src/xutil.pp svneol=native#text/plain
packages/x11/src/xv.pp svneol=native#text/plain
packages/x11/src/xvlib.pp svneol=native#text/plain
packages/x11/tests/mitmisc_linktest.pp svneol=native#text/plain
packages/x11/tests/xext_linktest.pp svneol=native#text/plain
packages/x11/tests/xfixes_linktest.pp svneol=native#text/plain
packages/x11/tests/xge_linktest.pp svneol=native#text/plain
packages/x11/tests/xinput2_linktest.pp svneol=native#text/plain

View File

@ -0,0 +1,9 @@
{ this program just links all externals, declared in the xext unit }
program xext_linktest;
uses
xext;
begin
halt(0);
XSetExtensionErrorHandler(nil);
XMissingExtension(nil,nil);
end.