[otrs-cvs] otrs/scripts/test FileTemp.t, 1.3, 1.4 AuthSession.t, 1.2, 1.3

cvs-log at otrs.org cvs-log at otrs.org
Wed Apr 11 10:35:54 GMT 2007


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

Modified Files:
	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.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** FileTemp.t	11 Apr 2007 10:04:42 -0000	1.3
--- FileTemp.t	11 Apr 2007 10:35:49 -0000	1.4
***************
*** 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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AuthSession.t	12 Mar 2007 09:24:14 -0000	1.2
--- AuthSession.t	11 Apr 2007 10:35:49 -0000	1.3
***************
*** 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