|
| 1 | +{=============================================================================== |
| 2 | + NitroPascal - Modern Pascal • C Performance |
| 3 | +
|
| 4 | + Copyright © 2025-present tinyBigGAMES™ LLC |
| 5 | + All Rights Reserved. |
| 6 | +
|
| 7 | + https://nitropascal.org |
| 8 | +
|
| 9 | + See LICENSE for license information |
| 10 | +===============================================================================} |
| 11 | + |
| 12 | +program Testbed; |
| 13 | + |
| 14 | +{$APPTYPE CONSOLE} |
| 15 | + |
| 16 | +uses |
| 17 | + System.SysUtils, |
| 18 | + UTest.Arrays in 'UTest.Arrays.pas', |
| 19 | + UTest.CodeGen in 'UTest.CodeGen.pas', |
| 20 | + UTest.Common in 'UTest.Common.pas', |
| 21 | + UTest.ConditionalCompilation in 'UTest.ConditionalCompilation.pas', |
| 22 | + UTest.ControlFlow in 'UTest.ControlFlow.pas', |
| 23 | + UTest.Lexer in 'UTest.Lexer.pas', |
| 24 | + UTest.Numbers in 'UTest.Numbers.pas', |
| 25 | + UTest.Parameters in 'UTest.Parameters.pas', |
| 26 | + UTest.Parser in 'UTest.Parser.pas', |
| 27 | + UTest.Pointers in 'UTest.Pointers.pas', |
| 28 | + UTest.Records in 'UTest.Records.pas', |
| 29 | + UTest.Strings in 'UTest.Strings.pas', |
| 30 | + UTest.Types in 'UTest.Types.pas', |
| 31 | + UTestbed in 'UTestbed.pas', |
| 32 | + NitroPascal.CodeGen in '..\..\src\NitroPascal.CodeGen.pas', |
| 33 | + NitroPascal.Compiler in '..\..\src\NitroPascal.Compiler.pas', |
| 34 | + NitroPascal.Lexer in '..\..\src\NitroPascal.Lexer.pas', |
| 35 | + NitroPascal.Parser in '..\..\src\NitroPascal.Parser.pas', |
| 36 | + NitroPascal.Resolver in '..\..\src\NitroPascal.Resolver.pas', |
| 37 | + NitroPascal.Symbols in '..\..\src\NitroPascal.Symbols.pas', |
| 38 | + NitroPascal.Types in '..\..\src\NitroPascal.Types.pas', |
| 39 | + NitroPascal.Utils in '..\..\src\NitroPascal.Utils.pas'; |
| 40 | + |
| 41 | +begin |
| 42 | + UTestbed.RunTests(); |
| 43 | +end. |
0 commit comments