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:
Terje Rosten 2014-06-25 12:35:50 +02:00
parent 0bbd354bda
commit 410b1dd86d
23 changed files with 699 additions and 691 deletions

0
mysql-test/collections/default.weekly Executable file → Normal file
View File

0
mysql-test/r/lowercase_table4.result Executable file → Normal file
View File

0
mysql-test/suite/innodb/r/innodb_bug57904.result Executable file → Normal file
View File

0
mysql-test/suite/innodb/r/innodb_bug60196.result Executable file → Normal file
View File

0
mysql-test/suite/innodb/t/innodb_bug57904.test Executable file → Normal file
View File

0
mysql-test/suite/innodb/t/innodb_bug60196-master.opt Executable file → Normal file
View File

0
mysql-test/suite/innodb/t/innodb_bug60196.test Executable file → Normal file
View File

2
mysql-test/t/long_tmpdir-master.sh Normal file → Executable file
View File

@ -1,3 +1,5 @@
#! /bin/bash
d="$MYSQLTEST_VARDIR/tmp/long_temporary_directory_path_123456789_123456789_123456789_123456789_123456789_123456789_123456789_123456789"
test -d "$d" || mkdir "$d"
rm -f "$d"/*

2
mysql-test/t/lowercase_mixed_tmpdir-master.sh Normal file → Executable file
View File

@ -1,3 +1,5 @@
#! /bin/bash
# This test requires a non-lowercase tmpdir directory on a case-sensitive
# filesystem.

0
mysql-test/t/lowercase_table4-master.opt Executable file → Normal file
View File

0
mysql-test/t/lowercase_table4.test Executable file → Normal file
View File

0
scripts/mysqlaccess.conf Executable file → Normal file
View File

2
sql-bench/graph-compare-results.sh Normal file → Executable file
View File

@ -1,3 +1,5 @@
#! /usr/bin/perl
####
#### Hello ... this is a heavily hacked script by Luuk
#### instead of printing the result it makes a nice gif

View File

@ -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
# it under the terms of the GNU General Public License as published by
@ -56,12 +56,14 @@ IF(UNIX)
IF(script MATCHES ".ini")
SET(comp IniFiles)
SET(permissions OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
ELSE()
SET(comp Server_Scripts)
SET(permissions OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
ENDIF()
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/${script}
DESTINATION ${inst_location} COMPONENT ${comp}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
PERMISSIONS ${permissions})
ENDFOREACH()
IF(INSTALL_SUPPORTFILESDIR)
INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles)

0
support-files/config.huge.ini.sh Executable file → Normal file
View File

0
support-files/config.medium.ini.sh Executable file → Normal file
View File

0
support-files/config.small.ini.sh Executable file → Normal file
View File