Browse Source

* fix for wrongly chosen conditional define name

git-svn-id: trunk@49335 -
Tomas Hajny 4 years ago
parent
commit
a652506254
1 changed files with 3 additions and 3 deletions
  1. 3 3
      tests/test/units/system/ttxtflsh.pp

+ 3 - 3
tests/test/units/system/ttxtflsh.pp

@@ -2,7 +2,7 @@
 { $DEFINE DEBUG}
 (* Define the following if the test will be run manually in a console       *)
 (* (no output redirection) - otherwise the test will fail for some targets. *)
-{ $DEFINE CONSOLE}
+{ $DEFINE TESTINCONSOLE}
 {$I-}
 uses
  Dos;
@@ -24,10 +24,10 @@ const
   {$DEFINE TESTCONSOLEOK}
  {$ELSE}
 *)
-  {$IFDEF CONSOLE}
+  {$IFDEF TESTINCONSOLE}
  ConsoleDeviceName = '';
    {$DEFINE TESTCONSOLEOK}
-  {$ENDIF CONSOLE}
+  {$ENDIF TESTINCONSOLE}
  { $ENDIF}
 {$ENDIF}