mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 23:34:34 +01:00
3a6ee28ef4
ndb/src/ndbapi/NdbScanFilter.cpp: translate NAND/NOR into AND/OR, since AND/OR operations are all correct ndb/test/include/NDBT_Test.hpp: add a new method executeOneCtx() in class NDBT_TestSuite, declare it ndb/test/ndbapi/Makefile.am: Add a new test case: testScanFIlter.cpp to test/ndbapi/, thus modify the Makefile.am related to it ndb/test/src/NDBT_Test.cpp: add a new method in class NDBT_TestSuite in order to adapt to some customized test cases, because the default NDBT's test talbes and flow are fixed, if just modify related existing methods, it will influence other test cases in test/ndbapi/ ndb/test/ndbapi/testScanFilter.cpp: It's a test case for ndbapi scan filter, test for AND/OR/NAND/NOR scan operations.
185 lines
6.9 KiB
Makefile
185 lines
6.9 KiB
Makefile
# Copyright (C) 2004-2006 MySQL AB
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
SUBDIRS = bank
|
|
|
|
ndbtest_PROGRAMS = \
|
|
flexBench \
|
|
drop_all_tabs \
|
|
create_all_tabs \
|
|
create_tab \
|
|
flexAsynch \
|
|
flexBench \
|
|
flexHammer \
|
|
flexTT \
|
|
testBackup \
|
|
testBasic \
|
|
testBasicAsynch \
|
|
testBlobs \
|
|
testDataBuffers \
|
|
testDict \
|
|
testIndex \
|
|
testMgm \
|
|
testNdbApi \
|
|
testNodeRestart \
|
|
testOIBasic \
|
|
testOperations \
|
|
testRestartGci \
|
|
testScan \
|
|
testInterpreter \
|
|
testScanFilter \
|
|
testScanInterpreter \
|
|
testScanPerf \
|
|
testSystemRestart \
|
|
testTimeout \
|
|
testTransactions \
|
|
testDeadlock \
|
|
ndbapi_slow_select testReadPerf testLcp \
|
|
testPartitioning \
|
|
testBitfield \
|
|
DbCreate DbAsyncGenerator \
|
|
testSRBank
|
|
|
|
EXTRA_PROGRAMS = \
|
|
test_event \
|
|
test_event_merge \
|
|
test_event_multi_table
|
|
#flexTimedAsynch
|
|
#testBlobs
|
|
#flex_bench_mysql
|
|
|
|
create_all_tabs_SOURCES = create_all_tabs.cpp
|
|
create_tab_SOURCES = create_tab.cpp
|
|
drop_all_tabs_SOURCES = drop_all_tabs.cpp
|
|
flexAsynch_SOURCES = flexAsynch.cpp
|
|
flexBench_SOURCES = flexBench.cpp
|
|
flexHammer_SOURCES = flexHammer.cpp
|
|
flexTT_SOURCES = flexTT.cpp
|
|
#flexTimedAsynch_SOURCES = flexTimedAsynch.cpp
|
|
#flex_bench_mysql_SOURCES = flex_bench_mysql.cpp
|
|
testBackup_SOURCES = testBackup.cpp
|
|
testBasic_SOURCES = testBasic.cpp
|
|
testBasicAsynch_SOURCES = testBasicAsynch.cpp
|
|
testBlobs_SOURCES = testBlobs.cpp
|
|
testDataBuffers_SOURCES = testDataBuffers.cpp
|
|
testDict_SOURCES = testDict.cpp
|
|
testIndex_SOURCES = testIndex.cpp
|
|
testMgm_SOURCES = testMgm.cpp
|
|
testNdbApi_SOURCES = testNdbApi.cpp
|
|
testNodeRestart_SOURCES = testNodeRestart.cpp
|
|
testOIBasic_SOURCES = testOIBasic.cpp
|
|
testOperations_SOURCES = testOperations.cpp
|
|
testRestartGci_SOURCES = testRestartGci.cpp
|
|
testScan_SOURCES = testScan.cpp ScanFunctions.hpp
|
|
testInterpreter_SOURCES = testInterpreter.cpp
|
|
testScanFilter_SOURCES = testScanFilter.cpp
|
|
testScanInterpreter_SOURCES = testScanInterpreter.cpp ScanFilter.hpp ScanInterpretTest.hpp
|
|
testScanPerf_SOURCES = testScanPerf.cpp
|
|
testSystemRestart_SOURCES = testSystemRestart.cpp
|
|
testTimeout_SOURCES = testTimeout.cpp
|
|
testTransactions_SOURCES = testTransactions.cpp
|
|
testDeadlock_SOURCES = testDeadlock.cpp
|
|
test_event_SOURCES = test_event.cpp
|
|
ndbapi_slow_select_SOURCES = slow_select.cpp
|
|
testReadPerf_SOURCES = testReadPerf.cpp
|
|
testLcp_SOURCES = testLcp.cpp
|
|
testPartitioning_SOURCES = testPartitioning.cpp
|
|
testBitfield_SOURCES = testBitfield.cpp
|
|
DbCreate_SOURCES = bench/mainPopulate.cpp bench/dbPopulate.cpp bench/userInterface.cpp bench/dbPopulate.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp
|
|
DbAsyncGenerator_SOURCES = bench/mainAsyncGenerator.cpp bench/asyncGenerator.cpp bench/ndb_async2.cpp bench/dbGenerator.h bench/macros.h bench/userInterface.h bench/testData.h bench/testDefinitions.h bench/ndb_schema.hpp bench/ndb_error.hpp
|
|
test_event_multi_table_SOURCES = test_event_multi_table.cpp
|
|
testSRBank_SOURCES = testSRBank.cpp
|
|
test_event_merge_SOURCES = test_event_merge.cpp
|
|
|
|
INCLUDES_LOC = -I$(top_srcdir)/ndb/include/kernel
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am
|
|
|
|
##testDict_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel
|
|
##testIndex_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel
|
|
##testSystemRestart_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel
|
|
##testTransactions_INCLUDES = $(INCLUDES) -I$(top_srcdir)/ndb/include/kernel
|
|
testBackup_LDADD = $(LDADD) bank/libbank.a
|
|
testSRBank_LDADD = bank/libbank.a $(LDADD)
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|
|
|
|
|
|
|
|
windoze-dsp: flexBench.dsp testBasic.dsp testBlobs.dsp \
|
|
testScan.dsp
|
|
|
|
flexBench.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-prg.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-prg.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ flexBench
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(flexBench_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD)
|
|
|
|
testBasic.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-prg.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-prg.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ testBasic
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(testBasic_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD)
|
|
|
|
testOIBasic.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-prg.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-prg.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ testOIBasic
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(testOIBasic_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD)
|
|
|
|
testBlobs.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-prg.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-prg.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ testBlobs
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(testBlobs_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD)
|
|
|
|
testScan.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-prg.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-prg.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ testScan
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(testScan_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LINK $(LDADD)
|
|
|