about summary refs log tree commit diff
path: root/src/etc
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-02-06 23:06:56 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-02-08 13:53:21 +1100
commitb89afe2af7bdd9b65836b278c6e0322a8f91fb07 (patch)
treee1f20a58f236e294304ae9d1bf58a014b85f77a6 /src/etc
parent6a8b3ae22fbf514d6dc920abebe478e95c38e3ad (diff)
downloadrust-b89afe2af7bdd9b65836b278c6e0322a8f91fb07.tar.gz
rust-b89afe2af7bdd9b65836b278c6e0322a8f91fb07.zip
Update docs and tests for #[deriving(Show)].
Diffstat (limited to 'src/etc')
-rwxr-xr-xsrc/etc/generate-deriving-span-tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/etc/generate-deriving-span-tests.py b/src/etc/generate-deriving-span-tests.py
index a3f057c04b0..7acaa761bb2 100755
--- a/src/etc/generate-deriving-span-tests.py
+++ b/src/etc/generate-deriving-span-tests.py
@@ -118,7 +118,8 @@ traits = {
 for (trait, supers, errs) in [('Rand', [], 1),
                               ('Clone', [], 1), ('DeepClone', ['Clone'], 1),
                               ('Eq', [], 2), ('Ord', [], 8),
-                              ('TotalEq', [], 1), ('TotalOrd', ['TotalEq'], 1)]:
+                              ('TotalEq', [], 1), ('TotalOrd', ['TotalEq'], 1),
+                              ('Show', [], 1)]:
     traits[trait] = (ALL, supers, errs)
 
 for (trait, (types, super_traits, error_count)) in traits.items():