Skip to content

Commit d1c5f36

Browse files
authored
PHPLIB-642: Sync transactions tests for unpinning after abort (#822)
Synced with mongodb/specifications@ec32686
1 parent d45f806 commit d1c5f36

File tree

3 files changed

+390
-4
lines changed

3 files changed

+390
-4
lines changed

.evergreen/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,10 +463,10 @@ axes:
463463
# * latest-stable can be updated when we start tagging 1.10 releases (even beta)
464464
# * 1.10-dev can be enabled once 1.10 has been branched
465465
# * latest-dev can be enabled once 1.10 has been branched
466-
- id: "lowest-supported"
467-
display_name: "1.10.0-alpha1"
468-
variables:
469-
EXTENSION_VERSION: "1.10.0alpha1"
466+
# - id: "lowest-supported"
467+
# display_name: "1.10.0-alpha1"
468+
# variables:
469+
# EXTENSION_VERSION: "1.10.0alpha1"
470470
- id: "latest"
471471
display_name: "1.10-dev (master)"
472472
variables:

tests/UnifiedSpecTests/UnifiedSpecTest.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,19 @@ public function provideGridFSTests()
7070
return $this->provideTests(__DIR__ . '/gridfs/*.json');
7171
}
7272

73+
/**
74+
* @dataProvider provideTransactionsTests
75+
*/
76+
public function testTransactions(...$args)
77+
{
78+
$this->doTestCase(...$args);
79+
}
80+
81+
public function provideTransactionsTests()
82+
{
83+
return $this->provideTests(__DIR__ . '/transactions');
84+
}
85+
7386
/**
7487
* @dataProvider provideVersionedApiTests
7588
*/

0 commit comments

Comments
 (0)