From 3bfea45a34664dd4f0464321daacc313b8e8d62b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 29 Nov 2017 14:12:40 +0100 Subject: run full test suite on all arches add patch for 32-bits from https://github.com/fzaninotto/Faker/pull/1348 add patch for big endian from https://github.com/fzaninotto/Faker/pull/1365 fix dependencies --- php-Faker-bigendian.patch | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 php-Faker-bigendian.patch (limited to 'php-Faker-bigendian.patch') diff --git a/php-Faker-bigendian.patch b/php-Faker-bigendian.patch deleted file mode 100644 index 39eb713..0000000 --- a/php-Faker-bigendian.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/test/Faker/Provider/UuidTest.php b/test/Faker/Provider/UuidTest.php -index ebd4ae4..5c639ca 100644 ---- a/test/Faker/Provider/UuidTest.php -+++ b/test/Faker/Provider/UuidTest.php -@@ -16,6 +16,9 @@ class UuidTest extends TestCase - - public function testUuidExpectedSeed() - { -+ if (pack('L', 0x6162797A) == pack('N', 0x6162797A)) { -+ $this->markTestSkipped('Big Endian'); -+ } - $faker = new Generator(); - $faker->seed(123); - $this->assertEquals("8e2e0c84-50dd-367c-9e66-f3ab455c78d6", BaseProvider::uuid()); -- cgit