Browse Source

+ initial version of stack checking routines

carl 24 years ago
parent
commit
2d4afe0bf8
1 changed files with 23 additions and 0 deletions
  1. 23 0
      tests/test/units/system/teststk.pp

+ 23 - 0
tests/test/units/system/teststk.pp

@@ -0,0 +1,23 @@
+{$S+}
+
+{ This tests the stack checking routine on those }
+{ targets which support it.                      }
+
+procedure recursive;
+ var s: string;
+  begin
+    s := 'blahblah';
+    recursive;
+  end;
+
+
+Begin
+  Recursive;
+end.
+
+{
+  $Log$
+  Revision 1.1  2001-12-10 02:41:41  carl
+  + initial version of stack checking routines
+
+}