diff options
author | Björn Gustavsson <[email protected]> | 2013-03-14 16:24:21 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-05-31 14:52:20 +0200 |
commit | 1cc6c23112042b7d7d301315225b147c2976cfbc (patch) | |
tree | a6ba42b9754eed2b130dc10ab9f04dc5c97539fb /lib | |
parent | daa806bb0c40f19dba5382f5773a0064b8e25d53 (diff) | |
download | otp-1cc6c23112042b7d7d301315225b147c2976cfbc.tar.gz otp-1cc6c23112042b7d7d301315225b147c2976cfbc.tar.bz2 otp-1cc6c23112042b7d7d301315225b147c2976cfbc.zip |
asn1_SUITE: Add testS1AP/1
Diffstat (limited to 'lib')
-rw-r--r-- | lib/asn1/test/asn1_SUITE.erl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl index 5f17170b2c..5ec201fd78 100644 --- a/lib/asn1/test/asn1_SUITE.erl +++ b/lib/asn1/test/asn1_SUITE.erl @@ -177,6 +177,7 @@ groups() -> testX420]}, testTcapsystem, testNBAPsystem, + testS1AP, test_compile_options, testDoubleEllipses, test_x691, @@ -1023,6 +1024,16 @@ testNBAPsystem(Config, Rule, Opts) -> testNBAPsystem:compile(Config, [Rule|Opts]), testNBAPsystem:test(Rule, Config). +testS1AP(Config) -> test(Config, fun testS1AP/3). +testS1AP(Config, Rule, Opts) -> + S1AP = ["S1AP-CommonDataTypes", + "S1AP-Constants", + "S1AP-Containers", + "S1AP-IEs", + "S1AP-PDU-Contents", + "S1AP-PDU-Descriptions"], + asn1_test_lib:compile_all(S1AP, Config, [Rule|Opts]). + test_compile_options(Config) -> ok = test_compile_options:wrong_path(Config), ok = test_compile_options:path(Config), |