diff options
author | Björn Gustavsson <[email protected]> | 2014-02-14 09:58:42 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-02-14 09:58:42 +0100 |
commit | c0667d05f1295930dacc80f82b985183fd800961 (patch) | |
tree | 26e381422fca7a448889d051ca5189526812432c /lib/asn1/test/testEnumExt.erl | |
parent | 172e25ac3a50ec8447b37512d71ddfa9332c912c (diff) | |
parent | 5d6d6812229cbcfbb26260d38d8ee4061f9a6570 (diff) | |
download | otp-c0667d05f1295930dacc80f82b985183fd800961.tar.gz otp-c0667d05f1295930dacc80f82b985183fd800961.tar.bz2 otp-c0667d05f1295930dacc80f82b985183fd800961.zip |
Merge branch 'bjorn/asn1/fix-enum-bug/OTP-11700'
* bjorn/asn1/fix-enum-bug/OTP-11700:
Correct subtyping of extensible ENUMERATED
Diffstat (limited to 'lib/asn1/test/testEnumExt.erl')
-rw-r--r-- | lib/asn1/test/testEnumExt.erl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/asn1/test/testEnumExt.erl b/lib/asn1/test/testEnumExt.erl index c66adaf949..878518be11 100644 --- a/lib/asn1/test/testEnumExt.erl +++ b/lib/asn1/test/testEnumExt.erl @@ -59,6 +59,10 @@ main(ber) -> common(ber). common(Erule) -> + roundtrip('SubExt1', blue), + roundtrip('SubExt1', orange), + roundtrip('SubExt1', black), + roundtrip('Seq', {'Seq',blue,42}), roundtrip('Seq', {'Seq',red,42}), roundtrip('Seq', {'Seq',green,42}), |