From 23192a53300e11f674a392f856486971e7fbd1d0 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 30 Sep 2020 09:50:33 +0200 Subject: rebuild for PHP 8.0.0RC1 add patch for PHP 8.0.0rc1 from https://github.com/goodspb/pdlib/pull/37 --- 37.patch | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 37.patch (limited to '37.patch') diff --git a/37.patch b/37.patch new file mode 100644 index 0000000..da45929 --- /dev/null +++ b/37.patch @@ -0,0 +1,43 @@ +From a31d3bc709321b784ecd93c983b476a0a298bfa0 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Wed, 30 Sep 2020 09:46:18 +0200 +Subject: [PATCH] relax test for 8.0.0RC1 + +--- + tests/cnn_face_detection_ctor_error.phpt | 2 +- + tests/face_landmark_detection_ctor_error.phpt | 2 +- + tests/face_recognition_ctor_error.phpt | 2 +- + 3 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/tests/cnn_face_detection_ctor_error.phpt b/tests/cnn_face_detection_ctor_error.phpt +index 3535448..385e307 100644 +--- a/tests/cnn_face_detection_ctor_error.phpt ++++ b/tests/cnn_face_detection_ctor_error.phpt +@@ -11,5 +11,5 @@ try { + } + ?> + --EXPECTF-- +-string(68) "CnnFaceDetection::__construct() expects exactly 1 parameter, 0 given" ++string(%d) "CnnFaceDetection::__construct() expects exactly 1 %s, 0 given" + +diff --git a/tests/face_landmark_detection_ctor_error.phpt b/tests/face_landmark_detection_ctor_error.phpt +index 2a717db..1f783f2 100644 +--- a/tests/face_landmark_detection_ctor_error.phpt ++++ b/tests/face_landmark_detection_ctor_error.phpt +@@ -16,5 +16,5 @@ try { + } + ?> + --EXPECTF-- +-string(73) "FaceLandmarkDetection::__construct() expects exactly 1 parameter, 0 given" ++string(%d) "FaceLandmarkDetection::__construct() expects exactly 1 %s, 0 given" + string(45) "Unable to open non-existent file for reading." +diff --git a/tests/face_recognition_ctor_error.phpt b/tests/face_recognition_ctor_error.phpt +index c06ed39..237f2b0 100644 +--- a/tests/face_recognition_ctor_error.phpt ++++ b/tests/face_recognition_ctor_error.phpt +@@ -11,4 +11,4 @@ try { + } + ?> + --EXPECTF-- +-string(67) "FaceRecognition::__construct() expects exactly 1 parameter, 0 given" ++string(%d) "FaceRecognition::__construct() expects exactly 1 %s, 0 given" -- cgit