mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
19 lines
425 B
Bash
Executable File
19 lines
425 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
go test github.com/cgrates/cgrates/rater
|
|
ts=$?
|
|
go test github.com/cgrates/cgrates/sessionmanager
|
|
sm=$?
|
|
go test github.com/cgrates/cgrates/config
|
|
cfg=$?
|
|
go test github.com/cgrates/cgrates/cmd/cgr-rater
|
|
cr=$?
|
|
go test github.com/cgrates/cgrates/inotify
|
|
it=$?
|
|
go test github.com/cgrates/cgrates/mediator
|
|
md=$?
|
|
go test github.com/cgrates/fsock
|
|
fs=$?
|
|
|
|
exit $ts && $sm && $cfg && $bl && $cr && $it && $md && $fs
|