aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_bin_SUITE_data/P-Record.py
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-03-11 09:19:58 +0000
committerErlang/OTP <[email protected]>2010-03-11 09:19:58 +0000
commita3202b05d648732b7d2afe3ad952782e5376a18d (patch)
treea9607987555b3ab1217f38fa06e6ce0d1bd57282 /lib/asn1/test/asn1_bin_SUITE_data/P-Record.py
parent356c33b6063de632f9c98c66260603e6edbc3ee5 (diff)
downloadotp-a3202b05d648732b7d2afe3ad952782e5376a18d.tar.gz
otp-a3202b05d648732b7d2afe3ad952782e5376a18d.tar.bz2
otp-a3202b05d648732b7d2afe3ad952782e5376a18d.zip
OTP-8516 asn1: clean up test suite
Diffstat (limited to 'lib/asn1/test/asn1_bin_SUITE_data/P-Record.py')
-rw-r--r--lib/asn1/test/asn1_bin_SUITE_data/P-Record.py59
1 files changed, 0 insertions, 59 deletions
diff --git a/lib/asn1/test/asn1_bin_SUITE_data/P-Record.py b/lib/asn1/test/asn1_bin_SUITE_data/P-Record.py
deleted file mode 100644
index ac3dc9abe0..0000000000
--- a/lib/asn1/test/asn1_bin_SUITE_data/P-Record.py
+++ /dev/null
@@ -1,59 +0,0 @@
-P-Record DEFINITIONS ::=
-BEGIN
-
-
-PersonnelRecord ::= [APPLICATION 0] SET
-{ name Name,
- title VisibleString,
- number EmployeeNumber,
- dateOfHire Date,
- nameOfSpouse [1] Name,
- children SEQUENCE OF ChildInformation DEFAULT {}
-}
-
-ChildInformation ::= SET
-{ name Name,
- dateOfBirth Date
-}
-
-Name ::= [APPLICATION 1] SEQUENCE
-{ givenName VisibleString,
- initial VisibleString,
- familyName VisibleString
-}
-
-EmployeeNumber ::= [APPLICATION 2] INTEGER
-Date ::= [APPLICATION 3] VisibleString -- YYYY MMDD
-
-v PersonnelRecord ::=
-{
- name {
- givenName "John",
- initial "P",
- familyName "Smith"
- },
- title "Director",
- number 51,
- dateOfHire "19710917",
- nameOfSpouse {
- givenName "Mary",
- initial "T",
- familyName "Smith"
- },
- children {
- {name {
- givenName "Ralph",
- initial "T",
- familyName "Smith"
- } ,
- dateOfBirth "19571111"},
- {name {
- givenName "Susan",
- initial "B",
- familyName "Jones"
- } ,
- dateOfBirth "19590717" }
- }
-}
-
-END