Bug#16395459 TEST AND RESULT FILES WITH EXECUTE BIT
Bug#16415173 CRLF INSTEAD OF LF IN SQL-BENCH SCRIPTS Correct perms and converts from Windows style to UNIX style line endings on some files. Fix perms on installed ini files. (MySQL 5.5 version)
This commit is contained in:
parent
0bbd354bda
commit
410b1dd86d
0
mysql-test/collections/default.weekly
Executable file → Normal file
0
mysql-test/collections/default.weekly
Executable file → Normal file
0
mysql-test/r/lowercase_table4.result
Executable file → Normal file
0
mysql-test/r/lowercase_table4.result
Executable file → Normal file
0
mysql-test/suite/innodb/r/innodb_bug57904.result
Executable file → Normal file
0
mysql-test/suite/innodb/r/innodb_bug57904.result
Executable file → Normal file
0
mysql-test/suite/innodb/r/innodb_bug60196.result
Executable file → Normal file
0
mysql-test/suite/innodb/r/innodb_bug60196.result
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug57904.test
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug57904.test
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug60196-master.opt
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug60196-master.opt
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug60196.test
Executable file → Normal file
0
mysql-test/suite/innodb/t/innodb_bug60196.test
Executable file → Normal file
2
mysql-test/t/long_tmpdir-master.sh
Normal file → Executable file
2
mysql-test/t/long_tmpdir-master.sh
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
d="$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789"
|
d="$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789"
|
||||||
test -d "$d" || mkdir "$d"
|
test -d "$d" || mkdir "$d"
|
||||||
rm -f "$d"/*
|
rm -f "$d"/*
|
||||||
|
2
mysql-test/t/lowercase_mixed_tmpdir-master.sh
Normal file → Executable file
2
mysql-test/t/lowercase_mixed_tmpdir-master.sh
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
|
#! /bin/bash
|
||||||
|
|
||||||
# This test requires a non-lowercase tmpdir directory on a case-sensitive
|
# This test requires a non-lowercase tmpdir directory on a case-sensitive
|
||||||
# filesystem.
|
# filesystem.
|
||||||
|
|
||||||
|
0
mysql-test/t/lowercase_table4-master.opt
Executable file → Normal file
0
mysql-test/t/lowercase_table4-master.opt
Executable file → Normal file
0
mysql-test/t/lowercase_table4.test
Executable file → Normal file
0
mysql-test/t/lowercase_table4.test
Executable file → Normal file
0
scripts/mysqlaccess.conf
Executable file → Normal file
0
scripts/mysqlaccess.conf
Executable file → Normal file
2
sql-bench/graph-compare-results.sh
Normal file → Executable file
2
sql-bench/graph-compare-results.sh
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
|
#! /usr/bin/perl
|
||||||
|
|
||||||
####
|
####
|
||||||
#### Hello ... this is a heavily hacked script by Luuk
|
#### Hello ... this is a heavily hacked script by Luuk
|
||||||
#### instead of printing the result it makes a nice gif
|
#### instead of printing the result it makes a nice gif
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.
|
# Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -56,12 +56,14 @@ IF(UNIX)
|
|||||||
|
|
||||||
IF(script MATCHES ".ini")
|
IF(script MATCHES ".ini")
|
||||||
SET(comp IniFiles)
|
SET(comp IniFiles)
|
||||||
|
SET(permissions OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
|
||||||
ELSE()
|
ELSE()
|
||||||
SET(comp Server_Scripts)
|
SET(comp Server_Scripts)
|
||||||
|
SET(permissions OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
||||||
ENDIF()
|
ENDIF()
|
||||||
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${script}
|
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${script}
|
||||||
DESTINATION ${inst_location} COMPONENT ${comp}
|
DESTINATION ${inst_location} COMPONENT ${comp}
|
||||||
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|
PERMISSIONS ${permissions})
|
||||||
ENDFOREACH()
|
ENDFOREACH()
|
||||||
IF(INSTALL_SUPPORTFILESDIR)
|
IF(INSTALL_SUPPORTFILESDIR)
|
||||||
INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles)
|
INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles)
|
||||||
|
0
support-files/config.huge.ini.sh
Executable file → Normal file
0
support-files/config.huge.ini.sh
Executable file → Normal file
0
support-files/config.medium.ini.sh
Executable file → Normal file
0
support-files/config.medium.ini.sh
Executable file → Normal file
0
support-files/config.small.ini.sh
Executable file → Normal file
0
support-files/config.small.ini.sh
Executable file → Normal file
Loading…
x
Reference in New Issue
Block a user