Commit 1b0c6866 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Merge branch 'mark/update_testing' into meeting/LI59e

parents 0749eceb a8ad8121
Loading
Loading
Loading
Loading
Loading
+14 −10
Original line number Original line Diff line number Diff line
image: "python:3.7"

before_script:
  - python3 --version
  - pip3 install -q asn1tools lxml xmlschema

stages:
stages:
  - Check Schemas
  - check


checkASN1:
process_asn:
  stage: Check Schemas
  image: "mcanterb/asn1test:latest"
  stage: check
  interruptible: true
  script:
  script:
  - python3 testing/check_asn1.py
    - python3 testing/asn_process.py
 No newline at end of file

process_xsd:
  image: "mcanterb/xsdtest:latest"
  stage: check
  interruptible: true
  script:
    - python3 testing/xsd_process.py
+3 −3
Original line number Original line Diff line number Diff line
@@ -36,9 +36,9 @@ L2CC ::= SEQUENCE
			-- The ethernet protocol is used
			-- The ethernet protocol is used
		...,
		...,
		l2ATM2684		[6] OCTET STRING,
		l2ATM2684		[6] OCTET STRING,
			-- The protocol RFC 2684, method "LLC Encapsulation for Bridged Protocols` [16] is used
			-- The protocol RFC 2684, method "LLC Encapsulation for Bridged Protocols" [16] is used
		l2FR2427		[7] OCTET STRING
		l2FR2427		[7] OCTET STRING
			-- The protocol RFC 2427 Multiprotocol Interconnect over Frame Relay [18] is used
			-- The protocol RFC 2427 "Multiprotocol Interconnect over Frame Relay" [18] is used
	}
	}
}
}


@@ -194,7 +194,7 @@ L2ProtocolInformation ::= ENUMERATED
	l2ProtocolATM2684(7),
	l2ProtocolATM2684(7),
		-- The protocol RFC 2684, method "LLC Encapsulation for Bridged Protocols" [16] is used
		-- The protocol RFC 2684, method "LLC Encapsulation for Bridged Protocols" [16] is used
	l2ProtocolFR2427(8)
	l2ProtocolFR2427(8)
		-- The protocol RFC2427 Multiprotocol Interconnect over Frame Relay [18] is used
		-- The protocol RFC2427 "Multiprotocol Interconnect over Frame Relay" [18] is used
}
}


END -- end of L2AccessPDU
END -- end of L2AccessPDU

103221-1/examples/desktop.ini

deleted100644 → 0
−246 B

File deleted.

+33 −0
Original line number Original line Diff line number Diff line
[
    [
        "./102232-1/LI-PS-PDU.asn", 
        "./103280/TS_103_280.asn1",
        "./testing/deps/33128/TS33128Payloads.asn",
        "./testing/deps/33108/Three3gppHI1Notifications.asn",
        "./testing/deps/33108/UMTSHI2Operations.asn",
        "./testing/deps/33108/UMTSHI3PS.asn",
        "./testing/deps/33108/EpsHI3PS.asn",
        "./testing/deps/33108/ConfHI3IMS.asn",
        "./testing/deps/33108/VoipHI3IMS.asn",
        "./testing/deps/33108/GCSEHI3.asn",
        "./testing/deps/33108/CSVoiceHI3IP.asn",
        "./testing/deps/33108/UMTSCSHI2Operations.asn",
        "./testing/deps/33108/EpsHI2Operations.asn",
        "./testing/deps/33108/ConfHI2Operations.asn",
        "./testing/deps/33108/ProSeHI2Operations.asn",
        "./testing/deps/33108/GCSEHI2Operations.asn",
        "./testing/deps/101671/HI1NotificationOperations,ver7.asn",
        "./testing/deps/101671/HI2Operations,ver18.asn",
        "./testing/deps/101909/TS101909201.asn",
        "./testing/deps/101909/TS101909202.asn",
        "./testing/deps/101909/PCESP.asn",
        "./testing/deps/301040/06132v203_C01.asn",
        "./103462/ILHIPDU.asn",
        "./102232-2/EmailPDU.asn",
        "./102232-3/IPAccessPDU.asn",
        "./102232-4/L2AccessPDU.asn",
        "./102232-5/IPMultimediaPDU.asn",
        "./102232-6/PstnIsdnPDU.asn"
    ],
    ["./102657/RDMessage.asn"]
]
 No newline at end of file

testing/asn_ignore.txt

0 → 100644
+2 −0
Original line number Original line Diff line number Diff line
deps
temp
 No newline at end of file
Loading