~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unit/TestMySQLServer.pm

  • Committer: Bernt M. Johnsen
  • Date: 2010-03-05 15:25:59 UTC
  • mto: (0.67.349 randgen-simplify)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: bernt.johnsen@sun.com-20100305152559-2p2nth1grl2y1yz6
Added benchmarking and profiling

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
sub set_up {
38
38
}
39
39
 
40
 
@pids;
 
40
my @pids;
41
41
 
42
42
sub tear_down {
43
43
    if (windows) {
48
48
        system("rmdir /s /q unit\\tmp");
49
49
    } else {
50
50
        ## Need to ,kill leftover processes if there are some
51
 
        # kill 9 => @pids;
 
51
        kill 9 => @pids;
52
52
        # system("rm -rf unit/tmp");
53
53
    }
54
54
}