Browse Source

+ dummy test1 unit added for dbx tests

pierre 26 years ago
parent
commit
1d5d3b421a
2 changed files with 11 additions and 2 deletions
  1. 2 2
      ide/text/test.pas
  2. 9 0
      ide/text/test1.pas

+ 2 - 2
ide/text/test.pas

@@ -1,11 +1,11 @@
-program                TestProgram;
+program TestProgram;
 
 
 
 
 uses
 uses
 {$ifdef go32v2}
 {$ifdef go32v2}
   dpmiexcp,
   dpmiexcp,
 {$endif}
 {$endif}
-    Test2;
+    test1, Test2;
 
 
 const A =  1234;
 const A =  1234;
       C =  #1#2#3#4;
       C =  #1#2#3#4;

+ 9 - 0
ide/text/test1.pas

@@ -0,0 +1,9 @@
+unit test1;
+
+{ dummy unit for test of dbx stabs info PM }
+
+interface
+
+implementation
+
+end.