diff options
author | Björn Gustavsson <[email protected]> | 2013-02-25 09:55:59 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-05-31 14:52:15 +0200 |
commit | 509ccd85ef448f5843716d4b51a8b07f875cdfda (patch) | |
tree | afc6fc22fd665a3f34733b2ecf27b2c7100a9a4a /lib/asn1/test/testInfObj.erl | |
parent | 82e02fa4ba16b0abd087437829e12049576f2a73 (diff) | |
download | otp-509ccd85ef448f5843716d4b51a8b07f875cdfda.tar.gz otp-509ccd85ef448f5843716d4b51a8b07f875cdfda.tar.bz2 otp-509ccd85ef448f5843716d4b51a8b07f875cdfda.zip |
PER/UPER: Share all code except encoding of primitives
The only code that is really different between the PER
and UPER backends is encoding of primitive types.
Diffstat (limited to 'lib/asn1/test/testInfObj.erl')
-rw-r--r-- | lib/asn1/test/testInfObj.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/asn1/test/testInfObj.erl b/lib/asn1/test/testInfObj.erl index 97e6a9aaa9..c0f86eab60 100644 --- a/lib/asn1/test/testInfObj.erl +++ b/lib/asn1/test/testInfObj.erl @@ -50,7 +50,8 @@ main(_Erule) -> roundtrip('InfObj', 'MyPdu', {'MyPdu',42,12,false,"string"}), roundtrip('InfObj', 'MyPdu', {'MyPdu',{'Seq',1023,"hello"}, - 42,true,"longer string"}). + 42,true,"longer string"}), + roundtrip('InfObj', 'MyPdu', {'MyPdu',"75712346",43,true,"string"}). roundtrip(M, T, V) -> |