├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── docker ├── Dockerfile.centos7 ├── Dockerfile.debian10 ├── Dockerfile.debian11 ├── Dockerfile.debian12 └── Dockerfile.debian9 ├── etc ├── config ├── excludeunits.txt.centos7 ├── excludeunits.txt.debian10 └── excludeunits.txt.debian9 ├── ktestsctl ├── libs └── utils └── units ├── tasync0001 ├── README.md ├── kamailio-tasync0001-inc.cfg ├── kamailio-tasync0001.cfg └── tasync0001.sh ├── tauthx0001 ├── README.md ├── kamailio-tauthx0001.cfg └── tauthx0001.sh ├── tauthx0002 ├── README.md ├── kamailio-tauthx0002.cfg ├── kamailio-tauthx0002.lua └── tauthx0002.sh ├── tavpop0001 ├── README.md ├── kamailio-tavpop0001.cfg └── tavpop0001.sh ├── tcfgxx0001 ├── README.md └── tcfgxx0001.sh ├── tcfgxx0002 ├── README.md └── tcfgxx0002.sh ├── tcfgxx0003 ├── README.md ├── kamailio-tcfgxx0003.cfg └── tcfgxx0003.sh ├── tgeoip0001 ├── README.md ├── kamailio-tgeoip0001.cfg └── tgeoip0001.sh ├── tgroup0001 ├── README.md ├── kamailio-tgroup0001.cfg └── tgroup0001.sh ├── thacxx0001 ├── README.md ├── http_server.py ├── kamailio-thacxx0001.cfg └── thacxx0001.sh ├── thacxx0002 ├── README.md ├── http_server.py ├── kamailio-thacxx0002.cfg └── thacxx0002.sh ├── thacxx0003 ├── README.md ├── http_server.py ├── kamailio-thacxx0003.cfg └── thacxx0003.sh ├── thacxx0004 ├── README.md ├── http_server.py ├── kamailio-thacxx0004.cfg └── thacxx0004.sh ├── thacxx0005 ├── README.md ├── http_server.py ├── kamailio-thacxx0005.cfg ├── thacxx0005.sh ├── uac.xml └── uas.xml ├── thacxx0006 ├── README.md ├── http_server.py ├── kamailio-thacxx0006.cfg ├── thacxx0006.sh ├── uac.xml └── uas.xml ├── thttpc0001 ├── README.md ├── http_server.py ├── kamailio-thttpc0001.cfg └── thttpc0001.sh ├── thttpc0002 ├── README.md ├── http_server.py ├── kamailio-thttpc0002.cfg └── thttpc0002.sh ├── tlcust0001 ├── README.md ├── kamailio-tlcust0001.cfg └── tlcust0001.sh ├── tmodxx0001 ├── README.md ├── kamailio-allmods.cfg └── tmodxx0001.sh ├── tmtree0001 ├── README.md ├── kamailio-tmtree0001.cfg └── tmtree0001.sh ├── tphonu0001 ├── README.md ├── kamailio-tphonu0001.cfg └── tphonu0001.sh ├── tpvxxx0001 ├── README.md ├── kamailio-tpvxxx0001.cfg └── tpvxxx0001.sh ├── tregexxx0001 ├── README.md ├── kamailio-tregexxx0001.cfg ├── regex_group ├── regex_groups ├── regex_groups_1 ├── regex_groups_2 └── tregexxx0001.sh ├── tregxx0001 ├── README.md ├── kamailio-tregxx0001-inc ├── kamailio-tregxx0001.cfg └── tregxx0001.sh ├── tregxx0002 ├── README.md ├── kamailio-tregxx0002.cfg ├── kamailio-tregxx0002.lua └── tregxx0002.sh ├── tsiput0001 ├── README.md ├── kamailio-tsiput0001.cfg └── tsiput0001.sh ├── tsjlua0001 ├── README.md ├── kamailio-tsjlua0001.cfg ├── kamailio-tsjlua0001.lua └── tsjlua0001.sh ├── tsjson0001 ├── README.md ├── kamailio-tsjson0001.cfg └── tsjson0001.sh ├── ttlsxx0001 ├── README.md └── ttlsxx0001.sh ├── tuacxx0001 ├── README.md ├── kamailio-tuacxx0001.cfg └── tuacxx0001.sh └── tulocx0001 ├── README.md └── tulocx0001.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile.centos7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/docker/Dockerfile.centos7 -------------------------------------------------------------------------------- /docker/Dockerfile.debian10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/docker/Dockerfile.debian10 -------------------------------------------------------------------------------- /docker/Dockerfile.debian11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/docker/Dockerfile.debian11 -------------------------------------------------------------------------------- /docker/Dockerfile.debian12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/docker/Dockerfile.debian12 -------------------------------------------------------------------------------- /docker/Dockerfile.debian9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/docker/Dockerfile.debian9 -------------------------------------------------------------------------------- /etc/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/etc/config -------------------------------------------------------------------------------- /etc/excludeunits.txt.centos7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/etc/excludeunits.txt.centos7 -------------------------------------------------------------------------------- /etc/excludeunits.txt.debian10: -------------------------------------------------------------------------------- 1 | tgeoip0001 2 | -------------------------------------------------------------------------------- /etc/excludeunits.txt.debian9: -------------------------------------------------------------------------------- 1 | tgeoip0001 2 | -------------------------------------------------------------------------------- /ktestsctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/ktestsctl -------------------------------------------------------------------------------- /libs/utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/libs/utils -------------------------------------------------------------------------------- /units/tasync0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tasync0001/README.md -------------------------------------------------------------------------------- /units/tasync0001/kamailio-tasync0001-inc.cfg: -------------------------------------------------------------------------------- 1 | #!KAMAILIO 2 | 3 | info.var_inc = 1 desc "Var from included file" 4 | -------------------------------------------------------------------------------- /units/tasync0001/kamailio-tasync0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tasync0001/kamailio-tasync0001.cfg -------------------------------------------------------------------------------- /units/tasync0001/tasync0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tasync0001/tasync0001.sh -------------------------------------------------------------------------------- /units/tauthx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0001/README.md -------------------------------------------------------------------------------- /units/tauthx0001/kamailio-tauthx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0001/kamailio-tauthx0001.cfg -------------------------------------------------------------------------------- /units/tauthx0001/tauthx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0001/tauthx0001.sh -------------------------------------------------------------------------------- /units/tauthx0002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0002/README.md -------------------------------------------------------------------------------- /units/tauthx0002/kamailio-tauthx0002.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0002/kamailio-tauthx0002.cfg -------------------------------------------------------------------------------- /units/tauthx0002/kamailio-tauthx0002.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0002/kamailio-tauthx0002.lua -------------------------------------------------------------------------------- /units/tauthx0002/tauthx0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tauthx0002/tauthx0002.sh -------------------------------------------------------------------------------- /units/tavpop0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tavpop0001/README.md -------------------------------------------------------------------------------- /units/tavpop0001/kamailio-tavpop0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tavpop0001/kamailio-tavpop0001.cfg -------------------------------------------------------------------------------- /units/tavpop0001/tavpop0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tavpop0001/tavpop0001.sh -------------------------------------------------------------------------------- /units/tcfgxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0001/README.md -------------------------------------------------------------------------------- /units/tcfgxx0001/tcfgxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0001/tcfgxx0001.sh -------------------------------------------------------------------------------- /units/tcfgxx0002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0002/README.md -------------------------------------------------------------------------------- /units/tcfgxx0002/tcfgxx0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0002/tcfgxx0002.sh -------------------------------------------------------------------------------- /units/tcfgxx0003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0003/README.md -------------------------------------------------------------------------------- /units/tcfgxx0003/kamailio-tcfgxx0003.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0003/kamailio-tcfgxx0003.cfg -------------------------------------------------------------------------------- /units/tcfgxx0003/tcfgxx0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tcfgxx0003/tcfgxx0003.sh -------------------------------------------------------------------------------- /units/tgeoip0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgeoip0001/README.md -------------------------------------------------------------------------------- /units/tgeoip0001/kamailio-tgeoip0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgeoip0001/kamailio-tgeoip0001.cfg -------------------------------------------------------------------------------- /units/tgeoip0001/tgeoip0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgeoip0001/tgeoip0001.sh -------------------------------------------------------------------------------- /units/tgroup0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgroup0001/README.md -------------------------------------------------------------------------------- /units/tgroup0001/kamailio-tgroup0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgroup0001/kamailio-tgroup0001.cfg -------------------------------------------------------------------------------- /units/tgroup0001/tgroup0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tgroup0001/tgroup0001.sh -------------------------------------------------------------------------------- /units/thacxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0001/README.md -------------------------------------------------------------------------------- /units/thacxx0001/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0001/http_server.py -------------------------------------------------------------------------------- /units/thacxx0001/kamailio-thacxx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0001/kamailio-thacxx0001.cfg -------------------------------------------------------------------------------- /units/thacxx0001/thacxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0001/thacxx0001.sh -------------------------------------------------------------------------------- /units/thacxx0002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0002/README.md -------------------------------------------------------------------------------- /units/thacxx0002/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0002/http_server.py -------------------------------------------------------------------------------- /units/thacxx0002/kamailio-thacxx0002.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0002/kamailio-thacxx0002.cfg -------------------------------------------------------------------------------- /units/thacxx0002/thacxx0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0002/thacxx0002.sh -------------------------------------------------------------------------------- /units/thacxx0003/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0003/README.md -------------------------------------------------------------------------------- /units/thacxx0003/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0003/http_server.py -------------------------------------------------------------------------------- /units/thacxx0003/kamailio-thacxx0003.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0003/kamailio-thacxx0003.cfg -------------------------------------------------------------------------------- /units/thacxx0003/thacxx0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0003/thacxx0003.sh -------------------------------------------------------------------------------- /units/thacxx0004/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0004/README.md -------------------------------------------------------------------------------- /units/thacxx0004/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0004/http_server.py -------------------------------------------------------------------------------- /units/thacxx0004/kamailio-thacxx0004.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0004/kamailio-thacxx0004.cfg -------------------------------------------------------------------------------- /units/thacxx0004/thacxx0004.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0004/thacxx0004.sh -------------------------------------------------------------------------------- /units/thacxx0005/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/README.md -------------------------------------------------------------------------------- /units/thacxx0005/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/http_server.py -------------------------------------------------------------------------------- /units/thacxx0005/kamailio-thacxx0005.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/kamailio-thacxx0005.cfg -------------------------------------------------------------------------------- /units/thacxx0005/thacxx0005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/thacxx0005.sh -------------------------------------------------------------------------------- /units/thacxx0005/uac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/uac.xml -------------------------------------------------------------------------------- /units/thacxx0005/uas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0005/uas.xml -------------------------------------------------------------------------------- /units/thacxx0006/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/README.md -------------------------------------------------------------------------------- /units/thacxx0006/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/http_server.py -------------------------------------------------------------------------------- /units/thacxx0006/kamailio-thacxx0006.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/kamailio-thacxx0006.cfg -------------------------------------------------------------------------------- /units/thacxx0006/thacxx0006.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/thacxx0006.sh -------------------------------------------------------------------------------- /units/thacxx0006/uac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/uac.xml -------------------------------------------------------------------------------- /units/thacxx0006/uas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thacxx0006/uas.xml -------------------------------------------------------------------------------- /units/thttpc0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0001/README.md -------------------------------------------------------------------------------- /units/thttpc0001/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0001/http_server.py -------------------------------------------------------------------------------- /units/thttpc0001/kamailio-thttpc0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0001/kamailio-thttpc0001.cfg -------------------------------------------------------------------------------- /units/thttpc0001/thttpc0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0001/thttpc0001.sh -------------------------------------------------------------------------------- /units/thttpc0002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0002/README.md -------------------------------------------------------------------------------- /units/thttpc0002/http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0002/http_server.py -------------------------------------------------------------------------------- /units/thttpc0002/kamailio-thttpc0002.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0002/kamailio-thttpc0002.cfg -------------------------------------------------------------------------------- /units/thttpc0002/thttpc0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/thttpc0002/thttpc0002.sh -------------------------------------------------------------------------------- /units/tlcust0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tlcust0001/README.md -------------------------------------------------------------------------------- /units/tlcust0001/kamailio-tlcust0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tlcust0001/kamailio-tlcust0001.cfg -------------------------------------------------------------------------------- /units/tlcust0001/tlcust0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tlcust0001/tlcust0001.sh -------------------------------------------------------------------------------- /units/tmodxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmodxx0001/README.md -------------------------------------------------------------------------------- /units/tmodxx0001/kamailio-allmods.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmodxx0001/kamailio-allmods.cfg -------------------------------------------------------------------------------- /units/tmodxx0001/tmodxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmodxx0001/tmodxx0001.sh -------------------------------------------------------------------------------- /units/tmtree0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmtree0001/README.md -------------------------------------------------------------------------------- /units/tmtree0001/kamailio-tmtree0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmtree0001/kamailio-tmtree0001.cfg -------------------------------------------------------------------------------- /units/tmtree0001/tmtree0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tmtree0001/tmtree0001.sh -------------------------------------------------------------------------------- /units/tphonu0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tphonu0001/README.md -------------------------------------------------------------------------------- /units/tphonu0001/kamailio-tphonu0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tphonu0001/kamailio-tphonu0001.cfg -------------------------------------------------------------------------------- /units/tphonu0001/tphonu0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tphonu0001/tphonu0001.sh -------------------------------------------------------------------------------- /units/tpvxxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tpvxxx0001/README.md -------------------------------------------------------------------------------- /units/tpvxxx0001/kamailio-tpvxxx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tpvxxx0001/kamailio-tpvxxx0001.cfg -------------------------------------------------------------------------------- /units/tpvxxx0001/tpvxxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tpvxxx0001/tpvxxx0001.sh -------------------------------------------------------------------------------- /units/tregexxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregexxx0001/README.md -------------------------------------------------------------------------------- /units/tregexxx0001/kamailio-tregexxx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregexxx0001/kamailio-tregexxx0001.cfg -------------------------------------------------------------------------------- /units/tregexxx0001/regex_group: -------------------------------------------------------------------------------- 1 | [0] 2 | ^ADIOS 3 | -------------------------------------------------------------------------------- /units/tregexxx0001/regex_groups: -------------------------------------------------------------------------------- 1 | [0] 2 | ^HOLA 3 | -------------------------------------------------------------------------------- /units/tregexxx0001/regex_groups_1: -------------------------------------------------------------------------------- 1 | [0] 2 | ^HOLA 3 | -------------------------------------------------------------------------------- /units/tregexxx0001/regex_groups_2: -------------------------------------------------------------------------------- 1 | [0] 2 | ^ADIOS 3 | -------------------------------------------------------------------------------- /units/tregexxx0001/tregexxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregexxx0001/tregexxx0001.sh -------------------------------------------------------------------------------- /units/tregxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0001/README.md -------------------------------------------------------------------------------- /units/tregxx0001/kamailio-tregxx0001-inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0001/kamailio-tregxx0001-inc -------------------------------------------------------------------------------- /units/tregxx0001/kamailio-tregxx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0001/kamailio-tregxx0001.cfg -------------------------------------------------------------------------------- /units/tregxx0001/tregxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0001/tregxx0001.sh -------------------------------------------------------------------------------- /units/tregxx0002/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0002/README.md -------------------------------------------------------------------------------- /units/tregxx0002/kamailio-tregxx0002.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0002/kamailio-tregxx0002.cfg -------------------------------------------------------------------------------- /units/tregxx0002/kamailio-tregxx0002.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0002/kamailio-tregxx0002.lua -------------------------------------------------------------------------------- /units/tregxx0002/tregxx0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tregxx0002/tregxx0002.sh -------------------------------------------------------------------------------- /units/tsiput0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsiput0001/README.md -------------------------------------------------------------------------------- /units/tsiput0001/kamailio-tsiput0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsiput0001/kamailio-tsiput0001.cfg -------------------------------------------------------------------------------- /units/tsiput0001/tsiput0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsiput0001/tsiput0001.sh -------------------------------------------------------------------------------- /units/tsjlua0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjlua0001/README.md -------------------------------------------------------------------------------- /units/tsjlua0001/kamailio-tsjlua0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjlua0001/kamailio-tsjlua0001.cfg -------------------------------------------------------------------------------- /units/tsjlua0001/kamailio-tsjlua0001.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjlua0001/kamailio-tsjlua0001.lua -------------------------------------------------------------------------------- /units/tsjlua0001/tsjlua0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjlua0001/tsjlua0001.sh -------------------------------------------------------------------------------- /units/tsjson0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjson0001/README.md -------------------------------------------------------------------------------- /units/tsjson0001/kamailio-tsjson0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjson0001/kamailio-tsjson0001.cfg -------------------------------------------------------------------------------- /units/tsjson0001/tsjson0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tsjson0001/tsjson0001.sh -------------------------------------------------------------------------------- /units/ttlsxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/ttlsxx0001/README.md -------------------------------------------------------------------------------- /units/ttlsxx0001/ttlsxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/ttlsxx0001/ttlsxx0001.sh -------------------------------------------------------------------------------- /units/tuacxx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tuacxx0001/README.md -------------------------------------------------------------------------------- /units/tuacxx0001/kamailio-tuacxx0001.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tuacxx0001/kamailio-tuacxx0001.cfg -------------------------------------------------------------------------------- /units/tuacxx0001/tuacxx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tuacxx0001/tuacxx0001.sh -------------------------------------------------------------------------------- /units/tulocx0001/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tulocx0001/README.md -------------------------------------------------------------------------------- /units/tulocx0001/tulocx0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamailio/kamailio-tests/HEAD/units/tulocx0001/tulocx0001.sh --------------------------------------------------------------------------------