Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asn1c
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
asn1c
Commits
d8bff546
Commit
d8bff546
authored
Sep 15, 2004
by
Lev Walkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
check recursive resolver
parent
4e7710cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
4 deletions
+76
-4
tests/14-resolver-OK.asn1
tests/14-resolver-OK.asn1
+25
-4
tests/14-resolver-OK.asn1.-EF
tests/14-resolver-OK.asn1.-EF
+51
-0
No files found.
tests/14-resolver-OK.asn1
View file @
d8bff546
...
...
@@ -5,19 +5,26 @@
-- .spelio.software.asn1c.test (9363.1.5.1)
-- .14 1
-- .14 2
-- .14 3
ModuleTestResolver2
{ iso org(3) dod(6) internet(1) private(4) enterprise(1)
spelio(9363) software(1) asn1c(5) test(1) 14 1 }
DEFINITIONS ::=
BEGIN
IMPORTS Enumeration, beta FROM
IMPORTS Enumeration, beta
, gamma
FROM
OtherModuleRenamed
{ iso org(3) dod(6) internet(1) private(4) enterprise(1)
spelio(9363) software(1) asn1c(5) test(1) 14 2 };
-- external reference
-- external reference
s
alpha Enumeration ::= beta
other Enumeration ::= gamma
Struct ::= SEQUENCE {
member1 [1] ModuleTestResolver3.Enumeration OPTIONAL,
member2 [2] OtherModuleRenamed.Enumeration DEFAULT b
}
--
-- The following are for post-fix checking by the check_fixer.
...
...
@@ -26,6 +33,7 @@ BEGIN
--
check-alpha INTEGER ::= 2
check-other INTEGER ::= 1
END
...
...
@@ -34,12 +42,25 @@ ModuleTestResolver3
spelio(9363) software(1) asn1c(5) test(1) 14 2 }
DEFINITIONS ::=
BEGIN
EXPORTS Enumeration, beta ;
EXPORTS Enumeration, beta, gamma;
IMPORTS gamma, HiddenEnum FROM HiddenModule;
beta HiddenEnum ::= b
Enumeration ::= ENUMERATED { a(1), b(2) } -- the same type --
END
HiddenModule
{ iso org(3) dod(6) internet(1) private(4) enterprise(1)
spelio(9363) software(1) asn1c(5) test(1) 14 3 }
DEFINITIONS ::=
BEGIN
EXPORTS HiddenEnum, gamma;
IMPORTS Enumeration FROM ModuleTestResolver3;
HiddenEnum ::= ENUMERATED { a(1), b(2) }
Enumeration ::= ENUMERATED { a(1), b(2) } -- the same type --
gamma Enumeration ::= a
END
tests/14-resolver-OK.asn1.-EF
0 → 100644
View file @
d8bff546
ModuleTestResolver2 {iso org(3) dod(6) internet(1) private(4)
enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
14 1 }
DEFINITIONS ::=
BEGIN
alpha Enumeration ::= 2
other Enumeration ::= 1
Struct ::= SEQUENCE {
member1 [1] EXPLICIT ModuleTestResolver3.Enumeration OPTIONAL,
member2 [2] EXPLICIT OtherModuleRenamed.Enumeration DEFAULT 2
}
check-alpha INTEGER ::= 2
check-other INTEGER ::= 1
END
ModuleTestResolver3 {iso org(3) dod(6) internet(1) private(4)
enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
14 2 }
DEFINITIONS ::=
BEGIN
beta HiddenEnum ::= 2
Enumeration ::= ENUMERATED {
a(1),
b(2)
}
END
HiddenModule {iso org(3) dod(6) internet(1) private(4)
enterprise(1) spelio(9363) software(1) asn1c(5) test(1)
14 3 }
DEFINITIONS ::=
BEGIN
HiddenEnum ::= ENUMERATED {
a(1),
b(2)
}
gamma Enumeration ::= 1
END
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment