Browse Source

'/' removed from $platform (mingw/msys)

h_vogt 14 years ago
parent
commit
6a96242e1f
  1. 4
      ChangeLog
  2. 3
      tests/bin/modelQaTestRoutines.pm

4
ChangeLog

@ -1,3 +1,7 @@
2012-01-15 Holger Vogt
* tests\bin\modelQaTestRoutines.pm: $platform
should not contain '/' , removed in line 700
2012-01-13 Robert Larice
* src/spicelib/devices/hisimhv/.cvsignore :
add missing .cvsignore file

3
tests/bin/modelQaTestRoutines.pm

@ -697,8 +697,7 @@ sub platform {
open(UNAME,"uname -r|");chomp($osVer =<UNAME>);close(UNAME);
}
$platform = "${archName}_${osName}_${osVer}";
$platform =~ s/\(//;
$platform =~ s/\)//;
$platform =~ s|[()/]||g;
return($platform);
}

Loading…
Cancel
Save