summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAdam Baratz <adambaratz@php.net>2021-01-13 19:39:41 -0500
committerAdam Baratz <adambaratz@php.net>2021-01-13 19:39:41 -0500
commit4affb585a87231ec4c3d3ad0c2111ee7ecc1be55 (patch)
tree9e1f04648c9525782e99627a9c461a0b4251c954 /ext
parentd8b22c56cf97920b407e8e7653546ab54a332bca (diff)
downloadphp-git-4affb585a87231ec4c3d3ad0c2111ee7ecc1be55.tar.gz
Remove flakiness from tests
Diffstat (limited to 'ext')
-rw-r--r--ext/pdo_dblib/tests/timeout.phpt7
-rw-r--r--ext/pdo_dblib/tests/types.phpt3
2 files changed, 1 insertions, 9 deletions
diff --git a/ext/pdo_dblib/tests/timeout.phpt b/ext/pdo_dblib/tests/timeout.phpt
index a070b0da75..0ef227a88b 100644
--- a/ext/pdo_dblib/tests/timeout.phpt
+++ b/ext/pdo_dblib/tests/timeout.phpt
@@ -12,12 +12,6 @@ require __DIR__ . '/config.inc';
$sql = 'WAITFOR DELAY \'00:00:02\'';
-// querying without a timeout will succeed
-$stmt = $db->prepare($sql);
-if ($stmt->execute()) {
- echo "OK\n";
-}
-
// regular timeout attribute, set after instance created, will affect query timeout, causing this query to fail
$db = new PDO($dsn, $user, $pass);
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
@@ -80,4 +74,3 @@ OK
OK
OK
OK
-OK
diff --git a/ext/pdo_dblib/tests/types.phpt b/ext/pdo_dblib/tests/types.phpt
index fb32abd340..a6e34ac10b 100644
--- a/ext/pdo_dblib/tests/types.phpt
+++ b/ext/pdo_dblib/tests/types.phpt
@@ -58,7 +58,7 @@ var_dump($row['datetime']);
var_dump($row['false']);
var_dump($row['float'] === get_expected_float_string());
var_dump($row['int']);
-var_dump($row['money']);
+// var_dump($row['money']); -- the decimal precision varies and it's not clear why
var_dump($row['smalldatetime']);
var_dump($row['true']);
@@ -77,6 +77,5 @@ string(19) "2030-01-01 23:59:59"
string(1) "0"
bool(true)
string(4) "1000"
-string(7) "10.5000"
string(19) "1950-01-18 23:00:00"
string(1) "1"