aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-11-07 05:29:00 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-07 05:29:00 -0800
commit6950de6c4166fabb35e6c756fc009e0cf1c47819 (patch)
treea5a647d549cde1ecf97fab0f118f1fb4bfdcf732 /tests
parent844a0b425741f07cb233332405143931586bbb7d (diff)
Comments Style: s/skbug.com/bug.skia.org/
Diffstat (limited to 'tests')
-rw-r--r--tests/CodexTest.cpp2
-rw-r--r--tests/ImageDecodingTest.cpp2
-rw-r--r--tests/ImageTest.cpp4
-rw-r--r--tests/PathTest.cpp4
-rw-r--r--tests/ReadPixelsTest.cpp4
-rw-r--r--tests/RecordDrawTest.cpp2
-rw-r--r--tests/SkResourceCacheTest.cpp2
7 files changed, 10 insertions, 10 deletions
diff --git a/tests/CodexTest.cpp b/tests/CodexTest.cpp
index 205bd49e2b..febaf7d43b 100644
--- a/tests/CodexTest.cpp
+++ b/tests/CodexTest.cpp
@@ -196,7 +196,7 @@ static void test_android_codec(skiatest::Reporter* r, SkAndroidCodec* codec, SkB
}
// FIXME: SkScaledCodec is currently only supported for types used by BRD
-// skbug.com/4428
+// https://bug.skia.org/4428
static bool supports_scaled_codec(const char path[]) {
static const char* const exts[] = {
"jpg", "jpeg", "png", "webp"
diff --git a/tests/ImageDecodingTest.cpp b/tests/ImageDecodingTest.cpp
index 61c89cbd4a..560fda5374 100644
--- a/tests/ImageDecodingTest.cpp
+++ b/tests/ImageDecodingTest.cpp
@@ -323,7 +323,7 @@ DEF_TEST(ImageDecoding_unpremul, reporter) {
}
}
}
-#endif // SK_BUILD_FOR_UNIX/ANDROID skbug.com/2388
+#endif // SK_BUILD_FOR_UNIX/ANDROID https://bug.skia.org/2388
#ifdef SK_DEBUG
// Test inside SkScaledBitmapSampler.cpp
diff --git a/tests/ImageTest.cpp b/tests/ImageTest.cpp
index 7cdf5b4c05..4768b8b0d4 100644
--- a/tests/ImageTest.cpp
+++ b/tests/ImageTest.cpp
@@ -38,7 +38,7 @@ static void assert_equal(skiatest::Reporter* reporter, SkImage* a, const SkIRect
REPORTER_ASSERT(reporter, widthA == b->width());
REPORTER_ASSERT(reporter, heightA == b->height());
#if 0
- // see skbug.com/3965
+ // see https://bug.skia.org/3965
bool AO = a->isOpaque();
bool BO = b->isOpaque();
REPORTER_ASSERT(reporter, AO == BO);
@@ -347,7 +347,7 @@ DEF_GPUTEST(SkImage_Gpu2Cpu, reporter, factory) {
}
#endif
-// http://skbug.com/4390
+// https://bug.skia.org/4390
DEF_TEST(ImageFromIndex8Bitmap, r) {
SkPMColor pmColors[1] = {SkPreMultiplyColor(SK_ColorWHITE)};
SkBitmap bm;
diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp
index 9c3bcced9a..eda7f79613 100644
--- a/tests/PathTest.cpp
+++ b/tests/PathTest.cpp
@@ -1299,7 +1299,7 @@ static void test_convexity2(skiatest::Reporter* reporter) {
check_convexity(reporter, dent, SkPath::kConcave_Convexity);
check_direction(reporter, dent, SkPathPriv::kCW_FirstDirection);
- // http://skbug.com/2235
+ // https://bug.skia.org/2235
SkPath strokedSin;
for (int i = 0; i < 2000; i++) {
SkScalar x = SkIntToScalar(i) / 2;
@@ -1726,7 +1726,7 @@ static void test_conservativelyContains(skiatest::Reporter* reporter) {
// Test that multiple move commands do not cause asserts.
// At the time of writing, this would not modify cached convexity. This caused an assert while
- // checking conservative containment again. http://skbug.com/1460
+ // checking conservative containment again. https://bug.skia.org/1460
path.moveTo(SkIntToScalar(100), SkIntToScalar(100));
#if 0
REPORTER_ASSERT(reporter, path.conservativelyContainsRect(SkRect::MakeXYWH(SkIntToScalar(50), 0,
diff --git a/tests/ReadPixelsTest.cpp b/tests/ReadPixelsTest.cpp
index 969617d2f7..97088b703e 100644
--- a/tests/ReadPixelsTest.cpp
+++ b/tests/ReadPixelsTest.cpp
@@ -446,7 +446,7 @@ DEF_GPUTEST(ReadPixels, reporter, factory) {
// make_ringed_bitmap was lifted from gm/bleed.cpp, as that GM was what showed the following
// bug when a change was made to SkImage_Raster.cpp. It is possible that other test bitmaps
-// would also tickle skbug.com/4351 but this one is know to do it, so I've pasted the code
+// would also tickle https://bug.skia.org/4351 but this one is know to do it, so I've pasted the code
// here so we have a dependable repro case.
// Create a black&white checked texture with 2 1-pixel rings
@@ -558,7 +558,7 @@ static void dump_to_file(const char name[], SkData* data) {
* These two techniques result in the same pixels (ala readPixels)
* but when we draw them (rotated+scaled) we don't always get the same results.
*
- * skbug.com/4351
+ * https://bug.skia.org/4351
*/
DEF_GPUTEST(ReadPixels_Subset_Gpu, reporter, factory) {
GrContext* ctx = factory->get(GrContextFactory::kNative_GLContextType);
diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp
index 13be115253..5aab91d444 100644
--- a/tests/RecordDrawTest.cpp
+++ b/tests/RecordDrawTest.cpp
@@ -197,7 +197,7 @@ DEF_TEST(RecordDraw_PartialStartStop, r) {
REPORTER_ASSERT(r, drawRect->rect == r2);
}
-// A regression test for crbug.com/415468 and skbug.com/2957.
+// A regression test for crbug.com/415468 and https://bug.skia.org/2957 .
//
// This also now serves as a regression test for crbug.com/418417. We used to adjust the
// bounds for the saveLayer, clip, and restore to be greater than the bounds of the picture.
diff --git a/tests/SkResourceCacheTest.cpp b/tests/SkResourceCacheTest.cpp
index 9faddd016d..6e8ae40986 100644
--- a/tests/SkResourceCacheTest.cpp
+++ b/tests/SkResourceCacheTest.cpp
@@ -26,7 +26,7 @@ static void make_bitmap(SkBitmap* bitmap, const SkImageInfo& info, SkBitmap::All
}
}
-// http://skbug.com/2894
+// https://bug.skia.org/2894
DEF_TEST(BitmapCache_add_rect, reporter) {
SkResourceCache::DiscardableFactory factory = SkResourceCache::GetDiscardableFactory();
SkBitmap::Allocator* allocator = SkBitmapCache::GetAllocator();