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
31f4aaa5
Commit
31f4aaa5
authored
Oct 12, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip looking for ndbapi-examples in 4.1, not part of dist
parent
889e7147
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+13
-7
No files found.
mysql-test/mysql-test-run.pl
View file @
31f4aaa5
...
...
@@ -1386,11 +1386,14 @@ sub executable_setup () {
mtr_exe_exists
("
$ndb_path
/src/kernel/ndbd
",
"
$glob_basedir
/bin/ndbd
");
$path_ndb_examples_dir
=
mtr_path_exists
("
$ndb_path
/ndbapi-examples
",
"
$ndb_path
/examples
");
$exe_ndb_example
=
mtr_file_exists
("
$path_ndb_examples_dir
/ndbapi_simple/ndbapi_simple
");
if
(
$mysql_version_id
>=
50000
)
{
$path_ndb_examples_dir
=
mtr_path_exists
("
$ndb_path
/ndbapi-examples
",
"
$ndb_path
/examples
");
$exe_ndb_example
=
mtr_file_exists
("
$path_ndb_examples_dir
/ndbapi_simple/ndbapi_simple
");
}
}
# Look for the udf_example library
...
...
@@ -1548,8 +1551,11 @@ sub environment_setup () {
$ENV
{'
NDB_TOOLS_OUTPUT
'}
=
$path_ndb_testrun_log
;
$ENV
{'
NDB_CONNECTSTRING
'}
=
$opt_ndbconnectstring
;
$ENV
{'
NDB_EXAMPLES_DIR
'}
=
$path_ndb_examples_dir
;
$ENV
{'
MY_NDB_EXAMPLES_BINARY
'}
=
$exe_ndb_example
;
if
(
$mysql_version_id
>=
50000
)
{
$ENV
{'
NDB_EXAMPLES_DIR
'}
=
$path_ndb_examples_dir
;
$ENV
{'
MY_NDB_EXAMPLES_BINARY
'}
=
$exe_ndb_example
;
}
$ENV
{'
NDB_EXAMPLES_OUTPUT
'}
=
$path_ndb_testrun_log
;
}
...
...
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