mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
6691ce30ec
Moving the test_pagecache_ tests from mysys to unittest/mysys. Means fixing includes to work with the new directory, some Makefile.am editing, replacing memset() with bfill(). test_page_cache_*.c renamed to mf_pagecache_*-t.c (-t is the standard suffix for tests in the mytap protocol). Also added plan() and exit_status() calls to tests. Sanja, I put some TODOs for you at the start of mf_pagecache_*.c unittest/mysys/test_file.h: Rename: mysys/test_file.h -> unittest/mysys/test_file.h mysys/Makefile.am: pagecache test files move to top/unittest/mysys mysys/mf_pagecache.c: my_bit.h needed to compile. unittest/mysys/Makefile.am: INCLUDES is a better place for includes than AM_CPPFLAGS (the latter get overriden by prog_CPPFLAGS, which is not desirable here). Adding pagecache's test programs (moved from mysys); test_pagecache_* has been renamed to mf_pagecache*-t (-t is the required suffix for test executables in the mytap framework). unittest/mysys/mf_pagecache_consist.c: fixing includes to work with the new directory. The test must return an exit code informing if any part failed. TODOs for Sanja. unittest/mysys/mf_pagecache_single.c: fixing includes to work with new directory. adding a plan() to account for the number of tests. Adding exit_status() to tell how many tests failed. memset() was giving a compilation warning (implicit declaration etc), properly due to me removing stdio.h etc, so I replaced it with bfill(). TODOs for Sanja. unittest/mysys/test_file.c: moved from mysys (piece of the page cache tests) and includes fixed.
51 lines
2.8 KiB
Makefile
51 lines
2.8 KiB
Makefile
INCLUDES = @ZLIB_INCLUDES@ -I$(top_builddir)/include \
|
|
-I$(top_srcdir)/include -I$(top_srcdir)/unittest/mytap
|
|
|
|
|
|
LDADD = $(top_builddir)/unittest/mytap/libmytap.a \
|
|
$(top_builddir)/mysys/libmysys.a \
|
|
$(top_builddir)/dbug/libdbug.a \
|
|
$(top_builddir)/strings/libmystrings.a
|
|
|
|
noinst_PROGRAMS = bitmap-t base64-t my_atomic-t \
|
|
mf_pagecache_single_1k-t mf_pagecache_single_8k-t \
|
|
mf_pagecache_single_64k-t \
|
|
mf_pagecache_consist_1k-t mf_pagecache_consist_64k-t \
|
|
mf_pagecache_consist_1kHC-t mf_pagecache_consist_64kHC-t \
|
|
mf_pagecache_consist_1kRD-t mf_pagecache_consist_64kRD-t \
|
|
mf_pagecache_consist_1kWR-t mf_pagecache_consist_64kWR-t
|
|
|
|
# tests for mysys/mf_pagecache.c
|
|
|
|
mf_pagecache_single_src = mf_pagecache_single.c $(top_srcdir)/mysys/mf_pagecache.c test_file.c
|
|
mf_pagecache_consist_src = mf_pagecache_consist.c $(top_srcdir)/mysys/mf_pagecache.c test_file.c
|
|
mf_pagecache_common_cppflags = -DEXTRA_DEBUG -DPAGECACHE_DEBUG -DMAIN
|
|
|
|
mf_pagecache_single_1k_t_SOURCES = $(mf_pagecache_single_src)
|
|
mf_pagecache_single_8k_t_SOURCES = $(mf_pagecache_single_src)
|
|
mf_pagecache_single_64k_t_SOURCES = $(mf_pagecache_single_src)
|
|
mf_pagecache_single_1k_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=1024
|
|
mf_pagecache_single_8k_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=8192
|
|
mf_pagecache_single_64k_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=65536
|
|
|
|
mf_pagecache_consist_1k_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_1k_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=1024
|
|
mf_pagecache_consist_64k_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_64k_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=65536
|
|
|
|
mf_pagecache_consist_1kHC_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_1kHC_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=1024 -DTEST_HIGH_CONCURENCY
|
|
mf_pagecache_consist_64kHC_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_64kHC_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=65536 -DTEST_HIGH_CONCURENCY
|
|
|
|
mf_pagecache_consist_1kRD_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_1kRD_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=1024 -DTEST_READERS
|
|
mf_pagecache_consist_64kRD_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_64kRD_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=65536 -DTEST_READERS
|
|
|
|
mf_pagecache_consist_1kWR_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_1kWR_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=1024 -DTEST_WRITERS
|
|
mf_pagecache_consist_64kWR_t_SOURCES = $(mf_pagecache_consist_src)
|
|
mf_pagecache_consist_64kWR_t_CPPFLAGS = $(mf_pagecache_common_cppflags) -DPAGE_SIZE=65536 -DTEST_WRITERS
|
|
|
|
CLEANFILES = my_pagecache_debug.log page_cache_test_file_1
|