mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-25 09:19:13 +01:00
25 lines
412 B
ObjectPascal
25 lines
412 B
ObjectPascal
program testidl;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
uses
|
|
{$ifdef unix}
|
|
cwstring,
|
|
{$endif}
|
|
consoletestrunner, webidlscanner, tcidlscanner, webidlparser, webidldefs,
|
|
tcidlparser, tcwebidldefs, tcwebidl2wasmjob;
|
|
|
|
Var
|
|
Application : TTestRunner;
|
|
|
|
begin
|
|
DefaultRunAllTests:=True;
|
|
DefaultFormat:=fPlain;
|
|
Application:=TTestRunner.Create(Nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
Application.Free;
|
|
end.
|
|
|