~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_auto_increment.test

  • Committer: Patrick Crews
  • Date: 2011-01-14 17:12:24 UTC
  • mto: (2086.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: gleebix@gmail.com-20110114171224-1tdc5icggz4e2u1j
Made include/have_valgrind do what the name implies altered not_valgrind to do the job of skipping tests that are in a valgrind run.  Updates to tests and whatnot to accomodate this

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
--source include/have_linux.inc
2
 
--source include/have_valgrind.inc
 
2
--source include/not_valgrind.inc
3
3
SET SESSION storage_engine=pbxt;
4
4
create table t1 (a int auto_increment primary key);
5
5
insert into t1 values (),(),(),();