1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Unittest fixes (recommit to start/test buildbot)

This commit is contained in:
holzboote@googlemail.com
2014-04-02 18:21:30 +02:00
parent b0678c6110
commit 8cab5e53a4
7 changed files with 513 additions and 152 deletions

View File

@@ -259,7 +259,7 @@ static int test_bind_date_conv(MYSQL *mysql, uint row_count)
FAIL_UNLESS(tm[i].year == 0 || tm[i].year == year+count, "wrong value for year");
FAIL_UNLESS(tm[i].month == 0 || tm[i].month == month+count, "wrong value for month");
FAIL_UNLESS(tm[i].day == 0 || tm[i].day == day+count, "wrong value for day");
FAIL_UNLESS(tm[i].hour == 0 || tm[i].hour == hour+count, "wrong value for hour");
FAIL_UNLESS(tm[i].hour == 0 || tm[i].hour % 24 == 0 || tm[i].hour % 24 == hour+count, "wrong value for hour");
FAIL_UNLESS(tm[i].minute == 0 || tm[i].minute == minute+count, "wrong value for minute");
FAIL_UNLESS(tm[i].second == 0 || tm[i].second == sec+count, "wrong value for second");
FAIL_UNLESS(tm[i].second_part == 0 ||
@@ -3110,7 +3110,7 @@ static int test_datetime_ranges(MYSQL *mysql)
rc= mysql_stmt_execute(stmt);
check_stmt_rc(rc, stmt);
FAIL_IF(mysql_warning_count(mysql) != 6, "warning count != 6");
FAIL_IF(!mysql_warning_count(mysql), "warnings expected");
if (verify_col_data(mysql, "t1", "year", "0000-00-00 00:00:00"))
goto error;
@@ -3148,7 +3148,7 @@ static int test_datetime_ranges(MYSQL *mysql)
rc= mysql_stmt_execute(stmt);
check_stmt_rc(rc, stmt);
FAIL_IF(mysql_warning_count(mysql) != 3, "warning count != 3");
FAIL_IF(!mysql_warning_count(mysql), "warnings expected");
if (verify_col_data(mysql, "t1", "year", "0000-00-00 00:00:00"))
goto error;