~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

Rework the boolean options so that true-by-default options change to --disable-option.

Also remove multitoken() from embedded_innodb.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5437
5437
  "Directory for log files")
5438
5438
  ("max-connect-retries", po::value<uint32_t>(&opt_max_connect_retries)->default_value(500)->notifier(&check_retries),
5439
5439
  "Max number of connection attempts when connecting to server")
5440
 
  ("quiet,s", po::value<bool>(&silent)->default_value(0)->zero_tokens(),
 
5440
  ("quiet,s", po::value<bool>(&silent)->default_value(false)->zero_tokens(),
5441
5441
  "Suppress all normal output.")
5442
5442
  ("record,r", "Record output of test_file into result file.")
5443
5443
  ("result-file,R", po::value<string>(&result_file_name)->default_value(""),