mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 18:46:24 +05:00
25 lines
434 B
Bash
Executable File
25 lines
434 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
./test.sh
|
|
gen=$?
|
|
go test github.com/cgrates/cgrates/apier -local
|
|
ap=$?
|
|
go test github.com/cgrates/cgrates/engine -local
|
|
en=$?
|
|
go test github.com/cgrates/cgrates/cdrc -local
|
|
cdrc=$?
|
|
go test github.com/cgrates/cgrates/mediator -local
|
|
med=$?
|
|
go test github.com/cgrates/cgrates/config -local
|
|
cfg=$?
|
|
go test github.com/cgrates/cgrates/utils -local
|
|
utl=$?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exit $gen && $ap && $en && $cdrc && $med && $cfg && $utl
|
|
|