diff options
author | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-02-10 22:10:22 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-02-10 22:10:22 +0000 |
commit | d8b1f499d96afc96759c2422ddc10c1bc1cea26d (patch) | |
tree | a6be35d450062f2141445d728dd4039a643da06e /libphobos/testsuite | |
parent | e613d992667a90ff731bbcecbb4ae6fa15adde31 (diff) | |
download | gcc-d8b1f499d96afc96759c2422ddc10c1bc1cea26d.zip gcc-d8b1f499d96afc96759c2422ddc10c1bc1cea26d.tar.gz gcc-d8b1f499d96afc96759c2422ddc10c1bc1cea26d.tar.bz2 |
libphobos: Merge upstream druntime 2f764ab6
Fixes hashing of complex reals, enabling testing of rt.util.typeinfo and
core.internal.hash.
Reviewed-on: https://github.com/dlang/druntime/pull/6837
libphobos/ChangeLog:
* Makefile.in: Rebuild.
* configure: Rebuild.
* libdruntime/Makefile.am: Test rt.util.typeinfo and
core.internal.convert.
* libdruntime/Makefile.in: Rebuild.
* src/Makefile.in: Rebuild.
* testsuite/Makefile.in: Rebuild.
* testsuite/libphobos.hash/test_hash.d: Update test.
From-SVN: r268755
Diffstat (limited to 'libphobos/testsuite')
-rw-r--r-- | libphobos/testsuite/Makefile.in | 1 | ||||
-rw-r--r-- | libphobos/testsuite/libphobos.aa/aa.exp | 2 | ||||
-rw-r--r-- | libphobos/testsuite/libphobos.hash/hash.exp | 2 | ||||
-rw-r--r-- | libphobos/testsuite/libphobos.hash/test_hash.d | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/libphobos/testsuite/Makefile.in b/libphobos/testsuite/Makefile.in index 33950c5..205b673 100644 --- a/libphobos/testsuite/Makefile.in +++ b/libphobos/testsuite/Makefile.in @@ -265,7 +265,6 @@ phobos_compiler_shared_flag = @phobos_compiler_shared_flag@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ -runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ diff --git a/libphobos/testsuite/libphobos.aa/aa.exp b/libphobos/testsuite/libphobos.aa/aa.exp index 2bfb7b2..cba0016 100644 --- a/libphobos/testsuite/libphobos.aa/aa.exp +++ b/libphobos/testsuite/libphobos.aa/aa.exp @@ -1,4 +1,4 @@ -# Copyright (C) 2018 Free Software Foundation, Inc. +# Copyright (C) 2018-2019 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/libphobos/testsuite/libphobos.hash/hash.exp b/libphobos/testsuite/libphobos.hash/hash.exp index 2bfb7b2..cba0016 100644 --- a/libphobos/testsuite/libphobos.hash/hash.exp +++ b/libphobos/testsuite/libphobos.hash/hash.exp @@ -1,4 +1,4 @@ -# Copyright (C) 2018 Free Software Foundation, Inc. +# Copyright (C) 2018-2019 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/libphobos/testsuite/libphobos.hash/test_hash.d b/libphobos/testsuite/libphobos.hash/test_hash.d index 5229c84..b406266 100644 --- a/libphobos/testsuite/libphobos.hash/test_hash.d +++ b/libphobos/testsuite/libphobos.hash/test_hash.d @@ -532,7 +532,7 @@ void pr2243() assert(tih26 == rth26); assert(tih27 == rth27); assert(tih28 == rth28); - //assert(tih29 == rth29); // XGDC: Implementation wrongly hashes padding. + assert(tih29 == rth29); assert(tih30 == rth30); assert(tih31 == rth31); assert(tih32 == rth32); |