Browse Source

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)
pull/73/head
Terje Rosten 12 years ago
parent
commit
410b1dd86d
  1. 0
      mysql-test/collections/default.weekly
  2. 0
      mysql-test/r/lowercase_table4.result
  3. 0
      mysql-test/suite/innodb/r/innodb_bug57904.result
  4. 0
      mysql-test/suite/innodb/r/innodb_bug60196.result
  5. 0
      mysql-test/suite/innodb/t/innodb_bug57904.test
  6. 0
      mysql-test/suite/innodb/t/innodb_bug60196-master.opt
  7. 0
      mysql-test/suite/innodb/t/innodb_bug60196.test
  8. 2
      mysql-test/t/long_tmpdir-master.sh
  9. 2
      mysql-test/t/lowercase_mixed_tmpdir-master.sh
  10. 0
      mysql-test/t/lowercase_table4-master.opt
  11. 0
      mysql-test/t/lowercase_table4.test
  12. 0
      scripts/mysqlaccess.conf
  13. 2
      sql-bench/graph-compare-results.sh
  14. 6
      support-files/CMakeLists.txt
  15. 0
      support-files/config.huge.ini.sh
  16. 0
      support-files/config.medium.ini.sh
  17. 0
      support-files/config.small.ini.sh

0
mysql-test/collections/default.weekly

0
mysql-test/r/lowercase_table4.result

0
mysql-test/suite/innodb/r/innodb_bug57904.result

0
mysql-test/suite/innodb/r/innodb_bug60196.result

0
mysql-test/suite/innodb/t/innodb_bug57904.test

0
mysql-test/suite/innodb/t/innodb_bug60196-master.opt

0
mysql-test/suite/innodb/t/innodb_bug60196.test

2
mysql-test/t/long_tmpdir-master.sh

@ -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

@ -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

0
mysql-test/t/lowercase_table4.test

0
scripts/mysqlaccess.conf

2
sql-bench/graph-compare-results.sh

@ -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

6
support-files/CMakeLists.txt

@ -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

0
support-files/config.medium.ini.sh

0
support-files/config.small.ini.sh

Loading…
Cancel
Save