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
2f7d7c9f
Commit
2f7d7c9f
authored
Sep 25, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makes mi_test_all.sh & ma_test_all.sh working (MDEV-285)
parent
b8ca6c2e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
+14
-5
storage/maria/CMakeLists.txt
storage/maria/CMakeLists.txt
+1
-1
storage/maria/ma_test_all.sh
storage/maria/ma_test_all.sh
+11
-2
storage/myisam/CMakeLists.txt
storage/myisam/CMakeLists.txt
+1
-1
storage/myisam/mi_test_all.sh
storage/myisam/mi_test_all.sh
+1
-1
No files found.
storage/maria/CMakeLists.txt
View file @
2f7d7c9f
...
...
@@ -68,7 +68,7 @@ SET_TARGET_PROPERTIES(aria_dump_log PROPERTIES COMPILE_FLAGS "-DMARIA_DUMP_LOG")
MYSQL_ADD_EXECUTABLE
(
aria_pack maria_pack.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
aria_pack aria
)
IF
(
WITH_UNIT_TESTS
AND FALSE
)
IF
(
WITH_UNIT_TESTS
)
ADD_EXECUTABLE
(
ma_test1 ma_test1.c
)
TARGET_LINK_LIBRARIES
(
ma_test1 aria
)
...
...
storage/maria/ma_test_all.sh
View file @
2f7d7c9f
...
...
@@ -7,13 +7,22 @@
#
#
PRG
=
'unittest/ma_test_all-t'
UTST
=
'../../unittest/unit.pl'
if
[
!
-x
$PRG
]
;
then
DIR
=
`
dirname
$0
`
PRG
=
"
$DIR
/unittest/ma_test_all-t"
UTST
=
"
$DIR
/../../unittest/unit.pl"
fi
if
test
-n
"
$1
"
;
then
# unit.pl can't pass options to ma_test_all-t, so if anything
# was passed as an argument, assume the purpose was to pass
# them to ma_test_all-t and call it directly
unittest/ma_test_all-t
$@
$PRG
$@
else
perl
../../unittest/unit.pl run unittest/ma_test_all-t
perl
$UTST
run
$PRG
fi
storage/myisam/CMakeLists.txt
View file @
2f7d7c9f
...
...
@@ -46,7 +46,7 @@ TARGET_LINK_LIBRARIES(myisamlog myisam)
MYSQL_ADD_EXECUTABLE
(
myisampack myisampack.c COMPONENT Server
)
TARGET_LINK_LIBRARIES
(
myisampack myisam
)
IF
(
WITH_UNIT_TESTS
AND FALSE
)
IF
(
WITH_UNIT_TESTS
)
ADD_EXECUTABLE
(
mi_test1 mi_test1.c
)
TARGET_LINK_LIBRARIES
(
mi_test1 myisam
)
...
...
storage/myisam/mi_test_all.sh
View file @
2f7d7c9f
...
...
@@ -99,7 +99,7 @@ if test -f mi_test1$MACH ; then suffix=$MACH ; else suffix=""; fi
# check of myisampack / myisamchk
./myisampack
$suffix
--force
-s
test1
# Ignore error for index file
./myisamchk
$suffix
-es
test1 2>&1
>
&
/dev/null
./myisamchk
$suffix
-es
test1 2>&1
>
/dev/null
./myisamchk
$suffix
-rqs
test1
./myisamchk
$suffix
-es
test1
./myisamchk
$suffix
-rs
test1
...
...
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