Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
f8d36040
Commit
f8d36040
authored
Jan 27, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed tests consumed big amount of disk space to be "BIG".
parent
a445a3f3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
4 deletions
+18
-4
storage/maria/unittest/CMakeLists.txt
storage/maria/unittest/CMakeLists.txt
+2
-2
storage/maria/unittest/ma_test_loghandler_multigroup-t.c
storage/maria/unittest/ma_test_loghandler_multigroup-t.c
+11
-0
storage/maria/unittest/ma_test_loghandler_multithread-t.c
storage/maria/unittest/ma_test_loghandler_multithread-t.c
+5
-2
No files found.
storage/maria/unittest/CMakeLists.txt
View file @
f8d36040
...
...
@@ -76,12 +76,12 @@ MY_ADD_TEST(ma_pagecache_single_1k)
ADD_EXECUTABLE
(
ma_pagecache_single_8k-t
${
ma_pagecache_single_src
}
)
SET_TARGET_PROPERTIES
(
ma_pagecache_single_8k-t
PROPERTIES COMPILE_FLAGS
"
${
ma_pagecache_common_cppflags
}
-DTEST_PAGE_SIZE=8192"
)
PROPERTIES COMPILE_FLAGS
"
${
ma_pagecache_common_cppflags
}
-DTEST_PAGE_SIZE=8192
-DBIG
"
)
MY_ADD_TEST
(
ma_pagecache_single_8k
)
ADD_EXECUTABLE
(
ma_pagecache_single_64k-t
${
ma_pagecache_single_src
}
)
SET_TARGET_PROPERTIES
(
ma_pagecache_single_64k-t
PROPERTIES COMPILE_FLAGS
"
${
ma_pagecache_common_cppflags
}
-DTEST_PAGE_SIZE=65536"
)
PROPERTIES COMPILE_FLAGS
"
${
ma_pagecache_common_cppflags
}
-DTEST_PAGE_SIZE=65536
-DBIG
"
)
MY_ADD_TEST
(
ma_pagecache_single_64k
)
ADD_EXECUTABLE
(
ma_pagecache_consist_1k-t
${
ma_pagecache_consist_src
}
)
...
...
storage/maria/unittest/ma_test_loghandler_multigroup-t.c
View file @
f8d36040
...
...
@@ -39,6 +39,7 @@ static TRN *trn= &dummy_transaction_object;
#define LOG_FILE_SIZE (1024L*1024L*1024L + 1024L*1024L*512)
#define ITERATIONS 2
#define READONLY 0
#define BIG 1
#else
...
...
@@ -48,6 +49,7 @@ static TRN *trn= &dummy_transaction_object;
#define LOG_FILE_SIZE (1024L*1024L*1024L + 1024L*1024L*512)
#define ITERATIONS 2
#define READONLY 1
#undef BIG
#endif
/*READONLY_TEST*/
...
...
@@ -243,6 +245,15 @@ int main(int argc __attribute__((unused)), char *argv[])
int
rc
;
MY_INIT
(
argv
[
0
]);
plan
(
0
);
// read configuration (MYTAP_CONFIG)
#ifdef BIG
if
(
skip_big_tests
)
{
plan
(
1
);
ok
(
1
,
"skipped as big test"
);
return
0
;
}
#endif
load_defaults
(
"my"
,
load_default_groups
,
&
argc
,
&
argv
);
get_options
(
&
argc
,
&
argv
);
...
...
storage/maria/unittest/ma_test_loghandler_multithread-t.c
View file @
f8d36040
...
...
@@ -35,7 +35,7 @@ static const char *default_dbug_option;
#ifdef MULTIFLUSH_TEST
#define LONG_BUFFER_S
IZE
(16384L)
#define LONG_BUFFER_S
Z
(16384L)
#define MIN_REC_LENGTH 10
#define SHOW_DIVIDER 20
#define ITERATIONS 10000
...
...
@@ -45,7 +45,7 @@ static const char *default_dbug_option;
#else
#define LONG_BUFFER_S
IZE
(512L*1024L*1024L)
#define LONG_BUFFER_S
Z
(512L*1024L*1024L)
#define MIN_REC_LENGTH 30
#define SHOW_DIVIDER 10
#define ITERATIONS 3
...
...
@@ -55,6 +55,8 @@ static const char *default_dbug_option;
#endif
#define LONG_BUFFER_SIZE (LONG_BUFFER_SZ >> (skip_big_tests ? 4 : 0))
static
uint
number_of_writers
=
WRITERS
;
static
uint
number_of_flushers
=
FLUSHERS
;
...
...
@@ -270,6 +272,7 @@ int main(int argc __attribute__((unused)),
int
rc
;
MY_INIT
(
argv
[
0
]);
// plan read MYTAP_CONFIG so skip_big_tests will be set before using
plan
(
WRITERS
+
FLUSHERS
+
ITERATIONS
*
WRITERS
*
3
+
FLUSH_ITERATIONS
*
FLUSHERS
);
/* We don't need to do physical syncs in this test */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment