Browse Source

* Renamed testdll.pp into ttdlltes1.pp so it falls into same chunk with ttdlltest.pp and can be located at runtime.

git-svn-id: trunk@27849 -
sergei 11 years ago
parent
commit
128cdd2a65
3 changed files with 5 additions and 5 deletions
  1. 1 1
      .gitattributes
  2. 0 0
      tests/test/library/ttdlltes1.pp
  3. 4 4
      tests/test/library/ttdlltest.pp

+ 1 - 1
.gitattributes

@@ -10936,7 +10936,6 @@ tests/test/jvm/uenum.pp svneol=native#text/plain
 tests/test/jvm/ujsetter.pp svneol=native#text/plain
 tests/test/jvm/unsupported.pp svneol=native#text/plain
 tests/test/lcpref.inc svneol=native#text/plain
-tests/test/library/testdll.pp svneol=native#text/plain
 tests/test/library/testdll2.pp svneol=native#text/plain
 tests/test/library/tlib1a.pp svneol=native#text/plain
 tests/test/library/tlib1b.pp svneol=native#text/plain
@@ -10947,6 +10946,7 @@ tests/test/library/tlib3b.pp svneol=native#text/plain
 tests/test/library/tlib3c.pp svneol=native#text/plain
 tests/test/library/tlib3d.pp svneol=native#text/plain
 tests/test/library/ttdllexe.pp svneol=native#text/plain
+tests/test/library/ttdlltes1.pp svneol=native#text/plain
 tests/test/library/ttdlltest.pp svneol=native#text/plain
 tests/test/library/ulib2a.pp svneol=native#text/plain
 tests/test/library/ulib2b.pp svneol=native#text/plain

+ 0 - 0
tests/test/library/testdll.pp → tests/test/library/ttdlltes1.pp


+ 4 - 4
tests/test/library/ttdlltest.pp

@@ -15,11 +15,11 @@ uses
   Windows;
 
 procedure p1(var S : string);
- external 'testdll' name 'P1';
+ external 'ttdlltes1' name 'P1';
 procedure proc2(x:longint);
- external 'testdll' name 'Proc2';
+ external 'ttdlltes1' name 'Proc2';
 function GetTestStr : string;
- external 'testdll' name 'GetTestStr';
+ external 'ttdlltes1' name 'GetTestStr';
 
 
 const
@@ -58,7 +58,7 @@ end;
 
 
 var
-   s : string;external 'testdll' name 'FPC_string';
+   s : string;external 'ttdlltes1' name 'FPC_string';
    s2 : string;