From 08811d9bb681b82d0d7958774cbc8ffdcc52eb07 Mon Sep 17 00:00:00 2001 From: Joseph Griego Date: Wed, 22 Aug 2018 15:15:13 -0700 Subject: [PATCH] Fix ext_imagick tests for aarch64 Summary: The version string includs the architecture, which we shouldn't be relying on in test cases. I'm not really sure we should be testing the exact version string/number anyways.... Reviewed By: swtaarrs, mxw Differential Revision: D9439923 fbshipit-source-id: 90cff8d2c9e117bbd7b195abbef1c29a3abd5407 --- hphp/test/slow/dv_array/ext_imagick/ext_imagick.php.expectf | 2 +- hphp/test/slow/dv_array_hack_arr/ext_imagick/ext_imagick.php.expectf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hphp/test/slow/dv_array/ext_imagick/ext_imagick.php.expectf b/hphp/test/slow/dv_array/ext_imagick/ext_imagick.php.expectf index deec22af14c..a2f9e847338 100644 --- a/hphp/test/slow/dv_array/ext_imagick/ext_imagick.php.expectf +++ b/hphp/test/slow/dv_array/ext_imagick/ext_imagick.php.expectf @@ -235,7 +235,7 @@ array(2) { ["versionNumber"]=> int(1689) ["versionString"]=> - string(70) "ImageMagick 6.9.9-42 Q16 x86_64 2018-07-12 https://www.imagemagick.org" + string(%d) "ImageMagick 6.9.9-42 Q16 %s 2018-07-12 https://www.imagemagick.org" } array(5) { ["imageName"]=> diff --git a/hphp/test/slow/dv_array_hack_arr/ext_imagick/ext_imagick.php.expectf b/hphp/test/slow/dv_array_hack_arr/ext_imagick/ext_imagick.php.expectf index f45881f12bd..044afed27ff 100644 --- a/hphp/test/slow/dv_array_hack_arr/ext_imagick/ext_imagick.php.expectf +++ b/hphp/test/slow/dv_array_hack_arr/ext_imagick/ext_imagick.php.expectf @@ -227,7 +227,7 @@ dict(2) { ["versionNumber"]=> int(1689) ["versionString"]=> - string(70) "ImageMagick 6.9.9-42 Q16 x86_64 2018-07-12 https://www.imagemagick.org" + string(%d) "ImageMagick 6.9.9-42 Q16 %s 2018-07-12 https://www.imagemagick.org" } dict(5) { ["imageName"]=> -- 2.11.4.GIT