mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
18 lines
808 B
Bash
Executable File
18 lines
808 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# ./local_test.sh
|
|
# lcl=$?
|
|
echo 'go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestFreeswitchCalls'
|
|
go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestFreeswitchCalls
|
|
gnr1=$?
|
|
echo 'go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestKamailioCalls'
|
|
go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestKamailioCalls
|
|
gnr2=$?
|
|
echo 'go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestOpensipsCalls'
|
|
go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestOpensipsCalls
|
|
gnr3=$?
|
|
echo 'go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestAsteriskCalls'
|
|
go test github.com/cgrates/cgrates/general_tests -tags=call -run=TestAsteriskCalls
|
|
gnr4=$?
|
|
|
|
exit $gnr1 && $gnr2 && $gnr3 && $gnr4 |