An error occurred fetching the project authors.
  1. 10 Apr, 2006 1 commit
    • unknown's avatar
      mysql-test-run.pl: · ff343a41
      unknown authored
        Added --ndbcluster_port for backward compatibility
      make_win_src_distribution.sh:
        Updated to reflect 5.1 changes
      
      
      scripts/make_win_src_distribution.sh:
        Updated to reflect 5.1 changes
      mysql-test/mysql-test-run.pl:
        Added --ndbcluster_port for backward compatibility
      ff343a41
  2. 07 Apr, 2006 1 commit
  3. 04 Apr, 2006 1 commit
  4. 29 Mar, 2006 7 commits
  5. 28 Mar, 2006 1 commit
  6. 27 Mar, 2006 2 commits
    • unknown's avatar
      mysql_fix_privilege_tables is not available (nor needed) in a Windows CMake · 421ae80b
      unknown authored
      build, so do not require it to be present in mysql-test-run.pl.
      
      
      421ae80b
    • unknown's avatar
      make_binary_distribution.sh: · 2919dceb
      unknown authored
        Split cp operations, to avoid shell limit on number of args
      mysql-test-run.pl:
        Removed obsolete way of cleaning up after test failure
      .del-drop-on-restart.inc~ef1715ddbebc3102:
        Delete: mysql-test/include/drop-on-restart.inc
      
      
      BitKeeper/deleted/.del-drop-on-restart.inc~ef1715ddbebc3102:
        Delete: mysql-test/include/drop-on-restart.inc
      mysql-test/mysql-test-run.pl:
        Removed obsolete way of cleaning up after test failure
      scripts/make_binary_distribution.sh:
        Split cp operations, to avoid shell limit on number of args
      2919dceb
  7. 24 Mar, 2006 1 commit
  8. 23 Mar, 2006 6 commits
  9. 22 Mar, 2006 1 commit
  10. 13 Mar, 2006 3 commits
  11. 10 Mar, 2006 1 commit
    • unknown's avatar
      Bug#17261 Passing a variable from a stored procedure to UDF crashes mysqld · e52ff555
      unknown authored
       - Update of test toolsand Makefiles to make it possible to test always test udf's as part 
      of the mysql test suite
      
      
      mysql-test/mysql-test-run.pl:
        Add the path where mysqld will udf_example.so used by the udf test
      mysql-test/r/udf.result:
        Update test results
      mysql-test/t/udf.test:
        Update tests
        The "--error 0" directives should actually be changed to the correct error number returned but that error  number is lost. W e do however get the right error message and that is checked in 
        the .result file.
      sql/Makefile.am:
        Build shared library udf_example.so
      sql/share/errmsg.txt:
        Update the max length of %s string from 64 to 128
      sql/sql_udf.cc:
        Add DBUG_PRINT just before dl_open
      sql/udf_example.cc:
        Use isalpha instade of my_isalpha
      e52ff555
  12. 08 Mar, 2006 3 commits
    • unknown's avatar
      mysql-test-run.pl, mtr_cases.pl · a3208c0f
      unknown authored
        - Back porting of some changes in later releases
        - Corrected valgrind support
        - Removed work around for TZ needed in VisualStudio 6
        - Don't restart master to add special settings from "<testcase>-master.opt",
          if same settngs as running master, feature request in bug#12433
        - With --reorder, keep tests with same *-master.opt content together,
          to save even more master restarts
      
      
      mysql-test/lib/mtr_misc.pl:
        Added functions to compare lists of options
      mysql-test/lib/mtr_cases.pl:
        Removed special code for Windows as in VC6 we unset
        TZ to avoid library bug
      mysql-test/mysql-test-run.pl:
        Handle pseudo option --timezone=<spec> that sets TZ
      a3208c0f
    • unknown's avatar
      BUG#17574 Detect cluster start failure and "fail" ndb_* tests · acb53e4e
      unknown authored
       - Fix problems that occur when ndbcluster is not supported
      
      
      mysql-test/lib/mtr_cases.pl:
        Marked test to be skipped if it is a ndb test but ndb is not supported
      mysql-test/mysql-test-run.pl:
        Check "opt_with_ndbcluster" before deciding to stop masters and when dciding if cluster needs to be started.
      acb53e4e
    • unknown's avatar
      mysql-test-run.pl: · cf11f78a
      unknown authored
        Allow space in base directory path, bug#15736
      
      
      mysql-test/mysql-test-run.pl:
        Allow space in base directory path, bug#15736
      cf11f78a
  13. 07 Mar, 2006 2 commits
    • unknown's avatar
      Bug#17574 Detect cluster start failure and "fail" ndb_* tests · f0f8f114
      unknown authored
       - Update for 5.1
      
      
      mysql-test/mysql-test-run.pl:
        Remove mtr_error call from ndbcluster_install_slave
        Check if ndbcluster_install_slave failed after it's been called. continu with disabled slave cluster if  --force is used.
      f0f8f114
    • unknown's avatar
      Bug#17574 Detect cluster start failure and "fail" ndb_* tests · 32926414
      unknown authored
      mysql-test/lib/mtr_cases.pl:
        Always set "ndb_test" if tets name contains ndb. 
        Set to skipped if "--skip-ndbcluster"
      mysql-test/lib/mtr_report.pl:
        Print special error message for ndb_test that are failed due to failure to start or install ndbcluster
      mysql-test/mysql-test-run.pl:
        Remove mtr_error call from ndbcluster_install, instead check after ndbcluster_install if test run should continue or if it should be aborted
        Faile ndb test and print special error message if it's a ndb test and flag_ndb_status_ok is not ok
      32926414
  14. 03 Mar, 2006 1 commit
    • unknown's avatar
      Windows fixes · bb60631b
      unknown authored
       - Use pipes "|"
       - Improved system command, create a temporary .sh faile that is executed  with cygwins sh(bash)
         This makes the Windows version behave exactly as the Lunix version(well almost...) 
       - Give unix path to DBUG, trace files is no produced if running ./mysql-test-run.pl --debug"
      
      
      client/mysqltest.c:
        Add new function "my_system" that run the <command> a she script using cygwin bash on windows.
      mysql-test/lib/mtr_misc.pl:
        Return all paths to executables in windows format "c:\src\.." when run on windows.
        This makes it possible to use the pipes "|" to pipöe the output form exeample "mysqlbinlog" into "mysql"
      mysql-test/mysql-test-run.pl:
        DBUG want's a unix format strings for where it should put the tracefile(don't ask me why but it works)
        Just chop of the first "c:" from the "c:/src/.." string and DBUG will be happy
      bb60631b
  15. 02 Mar, 2006 1 commit
    • unknown's avatar
      mysql-test-run.pl: · 8d7f4438
      unknown authored
        Try find in order 'mysqld-nt', 'mysqld', 'mysqld-debug' and 'mysqld-max'
      mysqld_safe.sh:
        Don't try 'mysqld-max' before 'mysqld' if no server given, bug#17861
      
      
      scripts/mysqld_safe.sh:
        Don't try 'mysqld-max' before 'mysqld' if no server given, bug#17861
      mysql-test/mysql-test-run.pl:
        Try find in order 'mysqld-nt', 'mysqld', 'mysqld-debug' and 'mysqld-max'
      8d7f4438
  16. 01 Mar, 2006 3 commits
  17. 26 Feb, 2006 3 commits
  18. 19 Feb, 2006 1 commit
    • unknown's avatar
      mysql-test-run.pl: · 8cab8c82
      unknown authored
        Added --restart-cleanup option
      drop-on-restart.inc:
        DROP commands to cleanup on restart
        new file
      mysqltest.c:
        Added option --include=<sql-file>
      
      
      client/mysqltest.c:
        Added option --include=<sql-file>
      mysql-test/include/drop-on-restart.inc:
        DROP commands to cleanup on restart
      mysql-test/mysql-test-run.pl:
        Added --restart-cleanup option
      8cab8c82
  19. 17 Feb, 2006 1 commit
    • unknown's avatar
      mysql-test-run.pl: · 6fc3a3d9
      unknown authored
        Added --comment=<string> option
      
      
      mysql-test/mysql-test-run.pl:
        Added --comment=<string> option
      6fc3a3d9