mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
changed cgr-rater tool name to cgr-engine
This commit is contained in:
2
build.sh
2
build.sh
@@ -1,6 +1,6 @@
|
||||
#! /usr/bin/env sh
|
||||
|
||||
go install github.com/cgrates/cgrates/cmd/cgr-rater
|
||||
go install github.com/cgrates/cgrates/cmd/cgr-engine
|
||||
cr=$?
|
||||
go install github.com/cgrates/cgrates/cmd/cgr-loader
|
||||
cl=$?
|
||||
|
||||
@@ -26,8 +26,8 @@ import (
|
||||
"github.com/cgrates/cgrates/balancer2go"
|
||||
"github.com/cgrates/cgrates/cdrs"
|
||||
"github.com/cgrates/cgrates/config"
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
"github.com/cgrates/cgrates/mediator"
|
||||
"github.com/cgrates/cgrates/rater"
|
||||
"github.com/cgrates/cgrates/scheduler"
|
||||
"github.com/cgrates/cgrates/sessionmanager"
|
||||
"github.com/cgrates/cgrates/utils"
|
||||
@@ -20,7 +20,7 @@ package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/cgrates/cgrates/rater"
|
||||
"github.com/cgrates/cgrates/engine"
|
||||
"github.com/cgrates/cgrates/scheduler"
|
||||
"net/rpc"
|
||||
"os"
|
||||
12
test.sh
12
test.sh
@@ -1,21 +1,21 @@
|
||||
#! /usr/bin/env sh
|
||||
|
||||
go test -i github.com/cgrates/cgrates/rater
|
||||
go test -i github.com/cgrates/cgrates/engine
|
||||
go test -i github.com/cgrates/cgrates/sessionmanager
|
||||
go test -i github.com/cgrates/cgrates/config
|
||||
go test -i github.com/cgrates/cgrates/cmd/cgr-rater
|
||||
go test -i github.com/cgrates/cgrates/cmd/cgr-engine
|
||||
go test -i github.com/cgrates/cgrates/mediator
|
||||
go test -i github.com/cgrates/fsock
|
||||
go test -i github.com/cgrates/cgrates/cdrs
|
||||
go test -i github.com/cgrates/cgrates/utils
|
||||
|
||||
go test github.com/cgrates/cgrates/rater
|
||||
ts=$?
|
||||
go test github.com/cgrates/cgrates/engine
|
||||
en=$?
|
||||
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
|
||||
go test github.com/cgrates/cgrates/cmd/cgr-engine
|
||||
cr=$?
|
||||
go test github.com/cgrates/cgrates/mediator
|
||||
md=$?
|
||||
@@ -26,4 +26,4 @@ ut=$?
|
||||
go test github.com/cgrates//fsock
|
||||
fs=$?
|
||||
|
||||
exit $ts && $sm && $cfg && $bl && $cr && $md && $cdr && $fs && $ut
|
||||
exit $en && $sm && $cfg && $bl && $cr && $md && $cdr && $fs && $ut
|
||||
|
||||
Reference in New Issue
Block a user