~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/pool_of_threads.test

  • Committer: Stewart Smith
  • Date: 2009-08-20 17:15:54 UTC
  • mto: (1119.2.2 merge)
  • mto: This revision was merged to the branch mainline in revision 1124.
  • Revision ID: stewart@flamingspork.com-20090820171554-72eo1tqlc4n64rak
Valgrind 3.5 requires --alignment to be a power of 2 between 16 and 4096. The specifying --alignment is not important for us, so remove it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
2
 
# Verify that the single_thread scheduler actually can process queries
3
 
#
4
 
 
5
 
select PLUGIN_NAME from information_schema.plugins where is_active="YES" and plugin_type="Scheduler";
6
 
 
7
 
--disable_warnings
8
 
DROP TABLE IF EXISTS t1;
9
 
--enable_warnings
10
 
CREATE TABLE t1
11
 
(
12
 
  some_text VARCHAR(100) NOT NULL
13
 
);
14
 
INSERT INTO t1 VALUES ("I love testing");
15
 
SELECT some_text FROM t1;
16
 
DROP TABLE t1;
 
1
# Start with thread_handling=pool-of-threads
 
2
# and run a number of tests
 
3
 
 
4
-- source include/common-tests.inc
 
5