浏览代码

* disable test on avr

git-svn-id: trunk@37609 -
florian 8 年之前
父节点
当前提交
0f637434a3
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      tests/test/tstack.pp

+ 6 - 0
tests/test/tstack.pp

@@ -1,3 +1,8 @@
+{$ifdef CPUAVR}
+{ avr does not support an exitproc }
+begin
+end.
+{$else CPUAVR}
 {$S+}
 
 { Program to check that an infinite recursion
@@ -60,3 +65,4 @@ begin
   exitproc:=@stack_check_exit;
   x:=inf_rec(5000);
 end.
+{$endif CPUAVR}