소스 검색

* resource string table simple compilation test
(align of table)

carl 23 년 전
부모
커밋
e8a8374e77
1개의 변경된 파일24개의 추가작업 그리고 0개의 파일을 삭제
  1. 24 0
      tests/test/talign1.pp

+ 24 - 0
tests/test/talign1.pp

@@ -0,0 +1,24 @@
+{ This verifies if the resource string table
+  is correctly aligned, normally the assembler
+  should be verified manually.
+}
+unit talign1;
+
+{$mode objfpc}
+
+interface
+
+resourcestring
+  First = 'This is is a small test of a unit for resource strings';
+  Second = 'This is also a small test';
+  
+implementation  
+  
+end.  
+{
+   $Log$
+   Revision 1.1  2002-10-21 21:12:13  carl
+     * resource string table simple compilation test
+       (align of table)
+
+}