[otrs-cvs] otrs/scripts/test FileTemp.t, 1.2.2.1, 1.2.2.2 AuthSession.t, 1.1.2.1, 1.1.2.2

cvs-log at otrs.org cvs-log at otrs.org
Wed Apr 11 10:36:30 GMT 2007


Comments:
Update of /home/cvs/otrs/scripts/test
In directory lancelot:/tmp/cvs-serv13313/scripts/test

Modified Files:
      Tag: rel-2_1
	FileTemp.t AuthSession.t 
Log Message:
Added win compat.

Author: martin

Index: FileTemp.t
===================================================================
RCS file: /home/cvs/otrs/scripts/test/FileTemp.t,v
retrieving revision 1.2.2.1
retrieving revision 1.2.2.2
diff -C2 -d -r1.2.2.1 -r1.2.2.2
*** FileTemp.t	11 Apr 2007 10:05:51 -0000	1.2.2.1
--- FileTemp.t	11 Apr 2007 10:36:25 -0000	1.2.2.2
***************
*** 29,33 ****
  
  # don't use this check on win (because it just gets removed after ending the process)
! if ($^O !~ /win/) {
      $Self->True(
          (! -e $Filename),
--- 29,33 ----
  
  # don't use this check on win (because it just gets removed after ending the process)
! if ($^O !~ /win/i) {
      $Self->True(
          (! -e $Filename),

Author: martin

Index: AuthSession.t
===================================================================
RCS file: /home/cvs/otrs/scripts/test/AuthSession.t,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** AuthSession.t	12 Mar 2007 09:23:29 -0000	1.1.2.1
--- AuthSession.t	11 Apr 2007 10:36:25 -0000	1.1.2.2
***************
*** 14,17 ****
--- 14,22 ----
  foreach my $Module (qw(DB FS IPC)) {
  
+     # don't use IPC on win
+     if ($^O =~ /win/i) {
+         next;
+     }
+ 
      $Self->{ConfigObject}->Set(Key => 'SessionModule', Value => "Kernel::System::AuthSession::$Module");
  


More information about the cvs-log mailing list