fpc/tests/test/jvm/tval4.pp
Jonas Maebe 71068ae7eb * made the tests Android-compatible (use the androidr14 unit instead
of the jdk15 unit in that case)
  * adjusted testall.sh script so it can also be used to test class
    files compiled for Android (still with the JVM though)

git-svn-id: branches/jvmbackend@19835 -
2011-12-12 20:34:02 +00:00

38 lines
428 B
ObjectPascal

unit tval4;
{$mode fpc}
interface
{$ifdef cpujvm}
uses
{$ifdef java}jdk15{$else}androidr14{$endif};
{$macro on}
{$define write:=JLSystem.fout.print}
{$define writeln:=JLSystem.fout.println}
{$endif}
function TestAllval4 : boolean;
implementation
uses
tvalc;
type
IntegerType = qword;
{$i tval.inc}
function TestAllval4 : boolean;
begin
Writeln('Test val for qword type');
TestAllval4:=TestAll;
end;
end.