浏览代码

tests: move tb0070.pp to tbs and change expected behavior to success because delphi and fpc both allows this constructions now

git-svn-id: trunk@16647 -
paul 14 年之前
父节点
当前提交
04ac114c77
共有 2 个文件被更改,包括 2 次插入4 次删除
  1. 1 1
      .gitattributes
  2. 1 3
      tests/tbs/tb0070.pp

+ 1 - 1
.gitattributes

@@ -7890,7 +7890,6 @@ tests/tbf/tb0066.pp svneol=native#text/plain
 tests/tbf/tb0067.pp svneol=native#text/plain
 tests/tbf/tb0067.pp svneol=native#text/plain
 tests/tbf/tb0068.pp svneol=native#text/plain
 tests/tbf/tb0068.pp svneol=native#text/plain
 tests/tbf/tb0069.pp svneol=native#text/plain
 tests/tbf/tb0069.pp svneol=native#text/plain
-tests/tbf/tb0070.pp svneol=native#text/plain
 tests/tbf/tb0071.pp svneol=native#text/plain
 tests/tbf/tb0071.pp svneol=native#text/plain
 tests/tbf/tb0072.pp svneol=native#text/plain
 tests/tbf/tb0072.pp svneol=native#text/plain
 tests/tbf/tb0073.pp svneol=native#text/plain
 tests/tbf/tb0073.pp svneol=native#text/plain
@@ -8123,6 +8122,7 @@ tests/tbs/tb0066.pp svneol=native#text/plain
 tests/tbs/tb0067.pp svneol=native#text/plain
 tests/tbs/tb0067.pp svneol=native#text/plain
 tests/tbs/tb0068.pp svneol=native#text/plain
 tests/tbs/tb0068.pp svneol=native#text/plain
 tests/tbs/tb0069.pp svneol=native#text/plain
 tests/tbs/tb0069.pp svneol=native#text/plain
+tests/tbs/tb0070.pp svneol=native#text/plain
 tests/tbs/tb0071.pp svneol=native#text/plain
 tests/tbs/tb0071.pp svneol=native#text/plain
 tests/tbs/tb0072.pp svneol=native#text/plain
 tests/tbs/tb0072.pp svneol=native#text/plain
 tests/tbs/tb0073.pp svneol=native#text/plain
 tests/tbs/tb0073.pp svneol=native#text/plain

+ 1 - 3
tests/tbf/tb0070.pp → tests/tbs/tb0070.pp

@@ -1,11 +1,9 @@
-{ %FAIL }
 { Old file: tbf0343.pp }
 { Old file: tbf0343.pp }
-{  }
 
 
 {$mode delphi}
 {$mode delphi}
 type
 type
   TListEntry = record
   TListEntry = record
-    Next: ^TListEntry;                      (*<-- Error message here*)
+    Next: ^TListEntry;                    // delphi and fpc allows this now
     Data: Integer;
     Data: Integer;
   end;
   end;