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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b337566b
Commit
b337566b
authored
Sep 24, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/Users/kent/mysql/bk/mysql-4.1
parents
a51f7832
3614cff7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
8 deletions
+26
-8
Makefile.am
Makefile.am
+13
-2
client/mysqltest.c
client/mysqltest.c
+5
-1
scripts/mysql_config.sh
scripts/mysql_config.sh
+8
-5
No files found.
Makefile.am
View file @
b337566b
...
...
@@ -106,12 +106,12 @@ MYSQL_TEST_NDB_PORT = 9350
test
:
cd
mysql-test
;
\
./mysql-test-run
.pl
\
./mysql-test-run
\
--manager-port
=
$(MYSQL_TEST_MANAGER_PORT)
\
--master_port
=
$(MYSQL_TEST_MASTER_PORT)
\
--slave_port
=
$(MYSQL_TEST_SLAVE_PORT)
\
--ndbcluster_port
=
$(MYSQL_TEST_NDB_PORT)
&&
\
./mysql-test-run
.pl
--ps-protocol
\
./mysql-test-run
--ps-protocol
\
--manager-port
=
$(MYSQL_TEST_MANAGER_PORT)
\
--master_port
=
$(MYSQL_TEST_MASTER_PORT)
\
--slave_port
=
$(MYSQL_TEST_SLAVE_PORT)
\
...
...
@@ -121,3 +121,14 @@ test-force:
cd
mysql-test
;
\
./mysql-test-run
--force
;
\
./mysql-test-run
--ps-protocol
--force
# We are testing a new Perl version of the test script
test-pl
:
cd
mysql-test
;
\
./mysql-test-run.pl
&&
\
./mysql-test-run.pl
--ps-protocol
test-force-pl
:
cd
mysql-test
;
\
./mysql-test-run.pl
--force
;
\
./mysql-test-run.pl
--ps-protocol
--force
client/mysqltest.c
View file @
b337566b
...
...
@@ -64,7 +64,11 @@
#include <sys/wait.h>
#endif
#ifndef WEXITSTATUS
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
# ifdef __WIN__
# define WEXITSTATUS(stat_val) (stat_val)
# else
# define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
# endif
#endif
#define MAX_QUERY 131072
#define MAX_VAR_NAME 256
...
...
scripts/mysql_config.sh
View file @
b337566b
...
...
@@ -105,9 +105,12 @@ embedded_libs="$ldflags -L$pkglibdir -lmysqld @LIBS@ @WRAPLIBS@ @innodb_system_l
embedded_libs
=
`
echo
"
$embedded_libs
"
|
sed
-e
's; \+; ;g'
|
sed
-e
's;^ *;;'
|
sed
-e
's; *\$;;'
`
# Remove some options that a client doesn't have to care about
# FIXME until we have a --cxxflags, we need to remove -Xa
# and -xstrconst to make --cflags usable for Sun Forte C++
for
remove
in
DDBUG_OFF DSAFEMALLOC USAFEMALLOC DSAFE_MUTEX
\
DPEDANTIC_SAFEMALLOC DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS
\
DEXTRA_DEBUG DHAVE_purify
'O[0-9]'
'W[-A-Za-z]*'
DEXTRA_DEBUG DHAVE_purify
'O[0-9]'
'W[-A-Za-z]*'
\
Xa xstrconst
do
# The first option we might strip will always have a space before it because
# we set -I$pkgincludedir as the first option
...
...
@@ -120,13 +123,13 @@ usage () {
Usage:
$0
[OPTIONS]
Options:
--cflags [
$cflags
]
--include
[
$include
]
--include
[
$include
]
--libs [
$libs
]
--libs_r [
$libs_r
]
--socket [
$socket
]
--port [
$port
]
--version [
$version
]
--libmysqld-libs [
$embedded_libs
]
--libmysqld-libs [
$embedded_libs
]
EOF
exit
1
}
...
...
@@ -136,13 +139,13 @@ if test $# -le 0; then usage; fi
while
test
$#
-gt
0
;
do
case
$1
in
--cflags
)
echo
"
$cflags
"
;;
--include
)
echo
"
$include
"
;;
--include
)
echo
"
$include
"
;;
--libs
)
echo
"
$libs
"
;;
--libs_r
)
echo
"
$libs_r
"
;;
--socket
)
echo
"
$socket
"
;;
--port
)
echo
"
$port
"
;;
--version
)
echo
"
$version
"
;;
--embedded-libs
|
--embedded
|
--libmysqld-libs
)
echo
"
$embedded_libs
"
;;
--embedded-libs
|
--embedded
|
--libmysqld-libs
)
echo
"
$embedded_libs
"
;;
*
)
usage
;;
esac
...
...
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