~patrick-crews/randgen/bug961630

« back to all changes in this revision

Viewing changes to pb2gentest.pl

  • Committer: Bernt M. Johnsen
  • Date: 2010-04-08 11:05:05 UTC
  • Revision ID: bernt.johnsen@sun.com-20100408110505-66z8d8139thjta80
Adjustments after merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
my $conf = $ENV{RQG_CONF};
61
61
$conf = 'conf' if not defined $conf;
62
62
 
63
 
if (windows()) {
 
63
if (osWindows()) {
64
64
        # For tail and for cdb
65
65
        $ENV{PATH} = 'G:\pb2\scripts\randgen\bin;G:\pb2\scripts\bin;C:\Program Files\Debugging Tools for Windows (x86);'.$ENV{PATH};
66
66
        $ENV{_NT_SYMBOL_PATH} = 'srv*c:\\cdb_symbols*http://msdl.microsoft.com/download/symbols;cache*c:\\cdb_symbols';
73
73
 
74
74
        # Path to MySQL releases used for comparison runs.
75
75
        $basedirRelease50 = 'G:\mysql-releases\mysql-5.0.87-win32'; # loki06
76
 
} elsif (solaris()) {
 
76
} elsif (osSolaris()) {
77
77
        # For libmysqlclient
78
78
        $ENV{LD_LIBRARY_PATH}=$ENV{LD_LIBRARY_PATH}.':/export/home/pb2/scripts/lib/';
79
79
 
627
627
        # is not yet implemented here.
628
628
        my $plugin_dir;
629
629
        my $plugins;
630
 
        if (windows()) {
 
630
        if (osWindows()) {
631
631
                my $master_plugin_name = "semisync_master.dll";
632
632
                $plugin_dir=findDirectory($master_plugin_name);
633
633
                if (not defined $plugin_dir) {
786
786
# Trying not to do this unless actually needed.
787
787
if (defined $port_range_id) {
788
788
        say("MTR_BUILD_THREAD=$port_range_id\n");
789
 
        if (windows()) {
 
789
        if (osWindows()) {
790
790
                $command = "set MTR_BUILD_THREAD=$port_range_id && ".$command;
791
791
        } else {
792
792
                $command = "MTR_BUILD_THREAD=$port_range_id ".$command;
833
833
# Assuming only one test run going on at the same time, and that all mysqld
834
834
# processes are ours.
835
835
say("Checking for remaining mysqld processes...\n");
836
 
if (windows()) {
 
836
if (osWindows()) {
837
837
        # assumes MS Sysinternals PsTools is installed in C:\bin
838
838
        # If you need to run pslist or pskill as non-Admin user, some adjustments
839
839
        # may be needed. See: