1%%
2%% %CopyrightBegin%
3%%
4%% Copyright Ericsson AB 2004-2016. All Rights Reserved.
5%%
6%% Licensed under the Apache License, Version 2.0 (the "License");
7%% you may not use this file except in compliance with the License.
8%% You may obtain a copy of the License at
9%%
10%%     http://www.apache.org/licenses/LICENSE-2.0
11%%
12%% Unless required by applicable law or agreed to in writing, software
13%% distributed under the License is distributed on an "AS IS" BASIS,
14%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15%% See the License for the specific language governing permissions and
16%% limitations under the License.
17%%
18%% %CopyrightEnd%
19%%
20%%
21-module(testTcapsystem).
22
23-export([compile/2]).
24
25compile(Config, Options) ->
26    Fs = [filename:join("tcapsystem", M) ||
27	     M <- ["DialoguePDUs.asn",
28		   "MAP-ApplicationContexts.asn",
29		   "MAP-BS-Code.asn",
30		   "MAP-CallHandlingOperations.asn",
31		   "MAP-CH-DataTypes.asn",
32		   "MAP-CommonDataTypes.asn",
33		   "MAP-DialogueInformation.asn",
34		   "MAP-ER-DataTypes.asn",
35		   "MAP-Errors.asn",
36		   "MAP-ExtensionDataTypes.asn",
37		   "MAP-GR-DataTypes.asn",
38		   "MAP-Group-Call-Operations.asn",
39		   "MAP-LCS-DataTypes.asn",
40		   "MAP-LocationServiceOperations.asn",
41		   "MAP-MobileServiceOperations.asn",
42		   "MAP-MS-DataTypes.asn",
43		   "MAP-OM-DataTypes.asn",
44		   "MAP-OperationAndMaintenanceOperations.asn",
45		   "MAP-Protocol.asn",
46		   "MAP-SecureTransportOperations.asn",
47		   "MAP-ShortMessageServiceOperations.asn",
48		   "MAP-SM-DataTypes.asn",
49		   "MAP-SS-Code.asn",
50		   "MAP-SS-DataTypes.asn",
51		   "MAP-ST-DataTypes.asn",
52		   "MAP-SupplementaryServiceOperations.asn",
53		   "MAP-TS-Code.asn",
54		   "MobileDomainDefinitions.asn",
55		   "Remote-Operations-Generic-ROS-PDUs.asn",
56		   "Remote-Operations-Information-Objects.asn",
57		   "Remote-Operations-Useful-Definitions.asn",
58		   "TCAP-Examples.asn",
59		   "TCAPMessages.asn",
60		   "TCAP-Tools.asn",
61		   "TC-Notation-Extensions.asn",
62		   "UnidialoguePDUs.asn"]],
63    asn1_test_lib:compile_all(Fs, Config, Options).
64