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
eff00002
Commit
eff00002
authored
Jun 14, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change test targets to be more modular. include unit tests into make test
parent
b19c1896
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
19 deletions
+24
-19
Makefile.am
Makefile.am
+24
-19
No files found.
Makefile.am
View file @
eff00002
...
...
@@ -101,7 +101,9 @@ dist-hook:
tags
:
support-files/build-tags
.PHONY
:
init-db bin-dist
.PHONY
:
init-db bin-dist test test-full test-ps test-nr
\
test-ns test-pr test-unit
# Target 'test' will run the regression test suite using the built server.
#
...
...
@@ -111,29 +113,34 @@ tags:
# will then calculate the various port numbers it needs from this,
# making sure each user use different ports.
test
:
test-unit
:
cd
unittest
&&
$(MAKE)
test
test-ps
:
cd
mysql-test
;
\
./mysql-test-run.pl
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--ps-protocol
--mysqld
=
--binlog-format
=
row
./mysql-test-run.pl
$(force)
--ps-protocol
--mysqld
=
--binlog-format
=
statement
test-
full
:
test-
nr
:
cd
mysql-test
;
\
./mysql-test-run.pl
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--ps-protocol
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--mysqld
=
--binlog-format
=
row
&&
\
./mysql-test-run.pl
--ps-protocol
--mysqld
=
--binlog-format
=
row
./mysql-test-run.pl
$(force)
--mysqld
=
--binlog-format
=
row
test-
force
:
test-
pr
:
cd
mysql-test
;
\
./mysql-test-run.pl
--force
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--ps-protocol
--force
--mysqld
=
--binlog-format
=
row
./mysql-test-run.pl
$(force)
--ps-protocol
--mysqld
=
--binlog-format
=
row
test-
force-full
:
test-
ns
:
cd
mysql-test
;
\
./mysql-test-run.pl
--force
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--force
--ps-protocol
--mysqld
=
--binlog-format
=
statement
&&
\
./mysql-test-run.pl
--force
--mysqld
=
--binlog-format
=
row
&&
\
./mysql-test-run.pl
--force
--ps-protocol
--mysqld
=
--binlog-format
=
row
./mysql-test-run.pl
$(force)
--mysqld
=
--binlog-format
=
statement
test
:
test-unit test-ns test-pr
test-full
:
test test-nr test-ps
test-force
:
$(MAKE)
force
=
--force
test
test-force-full
:
$(MAKE)
force
=
--force
test-full
# Keep these for a while
test-pl
:
test
...
...
@@ -141,8 +148,6 @@ test-full-pl: test-full
test-force-pl
:
test-force
test-force-full-pl
:
test-force-full
# Don't update the files from bitkeeper
%
::
SCCS/s.%
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