소스 검색

Merged revisions 2243-2244 via svnmerge from
svn+ssh://[email protected]/FPC/svn/fpc/trunk

r2243 (jonas)
* renamed test to properly reproduce internal error


r2244 (jonas)
* disabled writeln to avoid dbdigest getting confused while parsing
garbage output

git-svn-id: branches/fixes_2_0@2245 -

Jonas Maebe 19 년 전
부모
커밋
ef366508ad
3개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      .gitattributes
  2. 0 0
      tests/tbs/tb0497c.pp
  3. 1 1
      tests/webtbs/tw4390.pp

+ 1 - 1
.gitattributes

@@ -5044,9 +5044,9 @@ tests/tbs/tb0493.pp svneol=native#text/plain
 tests/tbs/tb0494.pp -text
 tests/tbs/tb0495.pp svneol=native#text/plain
 tests/tbs/tb0496.pp svneol=native#text/plain
-tests/tbs/tb0497.pp -text
 tests/tbs/tb0497a.pp -text
 tests/tbs/tb0497b.pp -text
+tests/tbs/tb0497c.pp -text
 tests/tbs/ub0060.pp svneol=native#text/plain
 tests/tbs/ub0069.pp svneol=native#text/plain
 tests/tbs/ub0119.pp svneol=native#text/plain

+ 0 - 0
tests/tbs/tb0497.pp → tests/tbs/tb0497c.pp


+ 1 - 1
tests/webtbs/tw4390.pp

@@ -13,7 +13,7 @@ var
 BEGIN
   move(Buf,s[1],size);
   s[0]:=chr(size);
-  writeln('Writing: "',s,'"');
+//  writeln('Writing: "',s,'"');
   if s<>'TEST' then
     halt(1);
 END;