mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
13 lines
269 B
Bash
Executable File
13 lines
269 B
Bash
Executable File
#! /usr/bin/env sh
|
|
|
|
go test github.com/cgrates/cgrates/timespans
|
|
ts=$?
|
|
go test github.com/cgrates/cgrates/sessionmanager
|
|
sm=$?
|
|
go test github.com/cgrates/cgrates/cmd/cgr-rater
|
|
cr=$?
|
|
go test github.com/cgrates/cgrates/inotify
|
|
in=$?
|
|
|
|
exit $ts || $sm || $bl || $cr || $in
|