Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 467d5df

Browse files
authored
Merge pull request #2335 from ibuclaw/issuelinks
[testsuite] Replace issue numbers with bugzilla urls merged-on-behalf-of: Sebastian Wilzbach <sebi.wilzbach@gmail.com>
2 parents 6c38809 + 8a622bf commit 467d5df

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

test/aa/src/test_aa.d

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,8 @@ void issue14626()
622622
static assert(is(typeof(caa.byValue().front) == const int));
623623
}
624624

625-
/// test duplicated keys in AA literal (issue 15290)
625+
/// test duplicated keys in AA literal
626+
/// https://issues.dlang.org/show_bug.cgi?id=15290
626627
void issue15290()
627628
{
628629
string[int] aa = [ 0: "a", 0: "b" ];
@@ -657,7 +658,8 @@ void issue15367()
657658
assert(a1 <= a2);
658659
}
659660

660-
/// test AA as key (Issue 16974)
661+
/// test AA as key
662+
/// https://issues.dlang.org/show_bug.cgi?id=16974
661663
void issue16974()
662664
{
663665
int[int] a = [1 : 2], a2 = [1 : 2];
@@ -669,7 +671,8 @@ void issue16974()
669671
assert(typeid(a).getHash(&a) == typeid(a).getHash(&a2));
670672
}
671673

672-
/// test safety for alias-this'd AA that have unsafe opCast (issue 18071)
674+
/// test safety for alias-this'd AA that have unsafe opCast
675+
/// https://issues.dlang.org/show_bug.cgi?id=18071
673676
void issue18071()
674677
{
675678
static struct Foo

test/exceptions/src/static_dtor.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Issue 16594
1+
// https://issues.dlang.org/show_bug.cgi?id=16594
22
import core.stdc.stdio;
33

44
shared static ~this()

test/hash/src/test_hash.d

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,8 @@ void pr2243()
373373
assert(h32 == rth32);
374374
assert(h33 == rth33);
375375

376-
assert(hashOf(null, 0) != hashOf(null, 123456789)); // issue 18932
376+
// https://issues.dlang.org/show_bug.cgi?id=18932
377+
assert(hashOf(null, 0) != hashOf(null, 123456789));
377378

378379
static size_t tiHashOf(T)(T var)
379380
{

0 commit comments

Comments
 (0)