summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYunQiang Su <wzssyqa@gmail.com>2016-02-06 02:26:48 +0100
committerGuillem Jover <guillem@debian.org>2016-02-15 02:10:45 +0100
commit8adc184ffabb309894345185704eab54a75874d0 (patch)
treef5ce417139d6d0c1bc3a1c101a89fe05c024d70d /scripts
parent6d7d92b8d5f5e25cebae6bf2c72515d14102550b (diff)
downloaddpkg-8adc184ffabb309894345185704eab54a75874d0.tar.gz
Add MIPS R6 architectures to arch tables
MIPS R6 is a new release of MIPS32 and MIPS64. R6 is not fully compatible with R5-, as it adds and *removes* some instructions, and adds emulation of the removed instructions in the kernel, so old binaries can still run on new R6 CPUs, but at a significant performance cost. Closes: #807340 Signed-off-by: Guillem Jover <guillem@debian.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/t/Dpkg_Arch.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/t/Dpkg_Arch.t b/scripts/t/Dpkg_Arch.t
index b57a0cf80..c147792b0 100644
--- a/scripts/t/Dpkg_Arch.t
+++ b/scripts/t/Dpkg_Arch.t
@@ -98,7 +98,7 @@ is(gnutriplet_to_debarch(undef), undef, 'undef gnutriplet');
is(gnutriplet_to_debarch('unknown-unknown-unknown'), undef, 'unknown gnutriplet');
is(gnutriplet_to_debarch('x86_64-linux-gnu'), 'amd64', 'known gnutriplet');
-is(scalar get_valid_arches(), 417, 'expected amount of known architectures');
+is(scalar get_valid_arches(), 475, 'expected amount of known architectures');
{
local $ENV{CC} = 'false';