fpc/tests/test/tmacpas1.pp
Jonas Maebe 320a699967 * fixed storing the symbols of the global macro symbol table in the ppu in
macpas mode after r32153
   o adjusted test so it checks this

git-svn-id: trunk@37912 -
2018-01-04 20:51:39 +00:00

53 lines
984 B
ObjectPascal

{ %recompile }
program tmacpas1;
{Tests of mac pascal constructs, concerning two units}
{$MODE MACPAS}
uses
umacpas1;
{** Test exportable macros **}
{$IFC UNDEFINED UMACPAS_COMP_VAR }
{$NOTE In using unit: UMACPAS_COMP_VAR is undefined}
{$ERRORC UMACPAS_COMP_VAR should be defined}
{$ELSEC}
{$IFC UMACPAS_COMP_VAR }
{$NOTE In using unit: UMACPAS_COMP_VAR is true}
{$ELSEC}
{$NOTE In using unit: UMACPAS_COMP_VAR is false}
{$ERRORC UMACPAS_COMP_VAR should be true}
{$ENDC}
{$ENDC}
{$IFC UNDEFINED UMACPAS_PRE_IMPL_COMP_VAR }
{$ERRORC UMACPAS_PRE_IMPL_COMP_VAR is not defined}
{$ENDC}
{$IFC UNDEFINED UMACPAS_PRE_IMPL_COMP_VAR }
{$ERRORC UMACPAS_PRE_IMPL_COMP_VAR is defined, while it shoud not}
{$ENDC}
{** Test J directive for var and external for proc **}
{$J+}
var
nisse: Integer; {Is available in Umacpas}
{$J-}
function Get84: Integer;
external;
begin
Writeln(nisse);
Writeln(Get84);
if nisse <> 42 then
halt(1);
if Get84 <> 84 then
halt(1);
end.