]> granicus.if.org Git - php/commitdiff
Rename *.jpeg files to *.jpg
authorPeter Kokot <peterkokot@gmail.com>
Sat, 11 May 2019 01:22:19 +0000 (03:22 +0200)
committerPeter Kokot <peterkokot@gmail.com>
Sat, 11 May 2019 01:22:19 +0000 (03:22 +0200)
These file extensions are not part of these tests and *.jpg is more
common.

17 files changed:
ext/exif/tests/bug48378.jpg [moved from ext/exif/tests/bug48378.jpeg with 100% similarity]
ext/exif/tests/bug48378.phpt
ext/exif/tests/bug54002.phpt
ext/exif/tests/bug54002_1.jpg [moved from ext/exif/tests/bug54002_1.jpeg with 100% similarity]
ext/exif/tests/bug54002_2.jpg [moved from ext/exif/tests/bug54002_2.jpeg with 100% similarity]
ext/exif/tests/bug72603.jpg [moved from ext/exif/tests/bug72603.jpeg with 100% similarity]
ext/exif/tests/bug72603.phpt
ext/gd/tests/bug67325.jpg [moved from ext/gd/tests/bug67325.jpeg with 100% similarity]
ext/gd/tests/bug67325.phpt
ext/gd/tests/bug77195.jpg [moved from ext/gd/tests/bug77195.jpeg with 100% similarity]
ext/gd/tests/bug77195.phpt
ext/gd/tests/conv_test.jpg [moved from ext/gd/tests/conv_test.jpeg with 100% similarity]
ext/gd/tests/conv_test私はガラスを食べられます.jpg [moved from ext/gd/tests/conv_test私はガラスを食べられます.jpeg with 100% similarity]
ext/gd/tests/gif.phpt
ext/gd/tests/jpeg2png.phpt
ext/gd/tests/jpg2gd-mb.phpt
ext/gd/tests/jpg2gd.phpt

index a830f226b11ae25e79b1bbceacfde3a61f169efb..a232bedf4341b2f2729add72d50bb5640e64c34d 100644 (file)
@@ -5,7 +5,7 @@ Bug #48378 (Infinite recursion due to corrupt JPEG)
 --FILE--
 <?php
 exif_read_data(
-__DIR__ . "/bug48378.jpeg",
+__DIR__ . "/bug48378.jpg",
 "FILE,COMPUTED,ANY_TAG"
 );
 ?>
index 031afad072c60fe24ef7bfd4446194b8effb4cc2..f9608b9939c32779c8bdb49ed5dfe85c2ca9bf59 100644 (file)
@@ -6,11 +6,11 @@ memory_limit=-1
 <?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
 --FILE--
 <?php
-exif_read_data(__DIR__ . '/bug54002_1.jpeg');
-exif_read_data(__DIR__ . '/bug54002_2.jpeg');
+exif_read_data(__DIR__ . '/bug54002_1.jpg');
+exif_read_data(__DIR__ . '/bug54002_2.jpg');
 
 ?>
 --EXPECTF--
-Warning: exif_read_data(bug54002_1.jpeg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sbug54002.php on line %d
+Warning: exif_read_data(bug54002_1.jpg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sbug54002.php on line %d
 
-Warning: exif_read_data(bug54002_2.jpeg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sbug54002.php on line %d
+Warning: exif_read_data(bug54002_2.jpg): Process tag(x0205=UndefinedTa): Illegal byte_count in %sbug54002.php on line %d
index eacb6ee45a5a538f4e62ef1087de0924dc669950..1df7bdb055bf5c56cb73812dd157ae33218e449c 100644 (file)
@@ -4,8 +4,8 @@ Bug #72603 (Out of bound read in exif_process_IFD_in_MAKERNOTE)
 <?php if (!extension_loaded('exif')) print 'skip exif extension not available';?>
 --FILE--
 <?php
-var_dump(count(exif_read_data(__DIR__ . "/bug72603.jpeg")));
+var_dump(count(exif_read_data(__DIR__ . "/bug72603.jpg")));
 ?>
 --EXPECTF--
-Warning: exif_read_data(bug72603.jpeg): %s in %s%ebug72603.php on line %d
+Warning: exif_read_data(bug72603.jpg): %s in %s%ebug72603.php on line %d
 int(%d)
index 97072fe14e056167044f88056fdd07cfb5df6e55..8290946c0fcd46deecf52eaabc52c4d977777e9a 100644 (file)
@@ -10,7 +10,7 @@ if (!GD_BUNDLED && version_compare(GD_VERSION, '2.2.3', '<=')) {
 ?>
 --FILE--
 <?php
-$filename = __DIR__ . DIRECTORY_SEPARATOR . 'bug67325.jpeg';
+$filename = __DIR__ . DIRECTORY_SEPARATOR . 'bug67325.jpg';
 
 $im = imagecreatefromjpeg($filename);
 imagetruecolortopalette($im, 0, 256);
index 1eb9024ce8c22ea7652de5beffea16d78010babb..5aa1f51b02f4feb65f02c282f997a72dca9b539e 100644 (file)
@@ -7,7 +7,7 @@ if (!gd_info()['JPEG Support']) die('skip JPEG support not available');
 ?>
 --FILE--
 <?php
-$filename = __DIR__ . '/bug77195.jpeg';
+$filename = __DIR__ . '/bug77195.jpg';
 @imagecreatefromjpeg($filename);
 imagecreatefromjpeg($filename);
 ?>
index 218ef50fa435b78c4913aab2ae028fca26a3efff..39ade092c20cd1366e71feaae990eec9595db219 100644 (file)
@@ -122,7 +122,7 @@ if (check_box($i,$i,$i)) {
 }
 
 
-$im = imagecreatefromjpeg($cwd . '/conv_test.jpeg');
+$im = imagecreatefromjpeg($cwd . '/conv_test.jpg');
 imagefilledrectangle($im, 5,5, 10,10, 0xffffff);
 imagegif($im, $cwd . '/test_gif.gif');
 imagegif($im, $cwd . '/test_gif_2.gif');
index 6e136514a8559739812e2e2ea7ff2cefbf3304c2..8d14b33e3adcd1e354ddad620f06a666dfb229e4 100644 (file)
@@ -26,7 +26,7 @@ jpeg <--> png conversion test
        echo "\n";
 
        echo "JPEG to PNG conversion: ";
-       echo imagepng(imagecreatefromjpeg($cwd . "/conv_test.jpeg"), $cwd . "/test_png.png") ? 'ok' : 'failed';
+       echo imagepng(imagecreatefromjpeg($cwd . "/conv_test.jpg"), $cwd . "/test_png.png") ? 'ok' : 'failed';
        echo "\n";
 
        echo "Generated PNG to JPEG conversion: ";
index 85959b4271cd4d46669ba263dbdcfa2c82b09a97..b7c0b98ab4928929610ee05a0ca9de13206cd086 100644 (file)
@@ -15,11 +15,11 @@ jpeg <--> gd1/gd2 conversion test
        $cwd = __DIR__;
 
        echo "JPEG to GD1 conversion: ";
-       echo imagegd(imagecreatefromjpeg($cwd . "/conv_test私はガラスを食べられます.jpeg"), $cwd . "/test私はガラスを食べられます.gd1") ? 'ok' : 'failed';
+       echo imagegd(imagecreatefromjpeg($cwd . "/conv_test私はガラスを食べられます.jpg"), $cwd . "/test私はガラスを食べられます.gd1") ? 'ok' : 'failed';
        echo "\n";
 
        echo "JPEG to GD2 conversion: ";
-       echo imagegd2(imagecreatefromjpeg($cwd . "/conv_test私はガラスを食べられます.jpeg"), $cwd . "/test私はガラスを食べられます.gd2") ? 'ok' : 'failed';
+       echo imagegd2(imagecreatefromjpeg($cwd . "/conv_test私はガラスを食べられます.jpg"), $cwd . "/test私はガラスを食べられます.gd2") ? 'ok' : 'failed';
        echo "\n";
 
        echo "GD1 to JPEG conversion: ";
index 672a392df03288d6a919e32ce045d0e76a5d7427..6ec714ef279d08b75ee800d8cab35dacaf0313b3 100644 (file)
@@ -15,11 +15,11 @@ jpeg <--> gd1/gd2 conversion test
        $cwd = __DIR__;
 
        echo "JPEG to GD1 conversion: ";
-       echo imagegd(imagecreatefromjpeg($cwd . "/conv_test.jpeg"), $cwd . "/test_jpeg.gd1") ? 'ok' : 'failed';
+       echo imagegd(imagecreatefromjpeg($cwd . "/conv_test.jpg"), $cwd . "/test_jpeg.gd1") ? 'ok' : 'failed';
        echo "\n";
 
        echo "JPEG to GD2 conversion: ";
-       echo imagegd2(imagecreatefromjpeg($cwd . "/conv_test.jpeg"), $cwd . "/test_jpeg.gd2") ? 'ok' : 'failed';
+       echo imagegd2(imagecreatefromjpeg($cwd . "/conv_test.jpg"), $cwd . "/test_jpeg.gd2") ? 'ok' : 'failed';
        echo "\n";
 
        echo "GD1 to JPEG conversion: ";