Browse Source

modelQaTestRoutines.om, avoid '(' ')' and '/' in the platform name

which will be used as a directory name
pre-master-46
dwarning 9 years ago
committed by rlar
parent
commit
9f931ad155
  1. 1
      tests/bin/modelQaTestRoutines.pm

1
tests/bin/modelQaTestRoutines.pm

@ -763,6 +763,7 @@ sub platform {
}
$platform = "${archName}_${osName}_${osVer}";
$platform =~ s/\s+/-/g;
$platform =~ s|[()/]||g;
return($platform);
}

Loading…
Cancel
Save