~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/randgen/gentest.pl

  • Committer: Brian Aker
  • Date: 2011-12-12 21:56:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2470.
  • Revision ID: brian@tangent.org-20111212215634-1ecdbeoitkmie1rw
Move from using 127.0.0.1, to localhost. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
my $DEFAULT_THREADS = 10;
32
32
my $DEFAULT_QUERIES = 1000;
33
33
my $DEFAULT_DURATION = 3600;
34
 
my $DEFAULT_DSN = 'dbi:mysql:host=127.0.0.1:port=9306:user=root:database=test';
 
34
my $DEFAULT_DSN = 'dbi:mysql:host=localhost:port=9306:user=root:database=test';
35
35
 
36
36
my @ARGV_saved = @ARGV;
37
37