mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
17 lines
238 B
Bash
Executable File
17 lines
238 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=$?
|
|
|
|
|
|
|
|
|
|
exit $gen && $ap && $en && cdrc
|
|
|