aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/tests
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-10-26 00:33:26 +0200
committerHarald Welte <laforge@gnumonks.org>2017-10-26 00:50:00 +0200
commitcb1838d8075379fdc08095fdd718b459180a38ae (patch)
tree730f22af482b70f4209c2be57e1e084d06ffce01 /openbsc/tests
parented03661871ac8ee1715c04390d25631537b084ac (diff)
rename osmo-bsc to osmo-bsc-sccplite
This is to avoid naming conflicts with the new osmo-bsc, which resides in its own git repository (osmo-bsc.git) and which uses libosmo-sigtran and implements (primarily) 3GPP AoIP. Change-Id: If10d1599b62d010726336134091a4e855c380d93
Diffstat (limited to 'openbsc/tests')
-rw-r--r--openbsc/tests/ctrl_test_runner.py8
-rw-r--r--openbsc/tests/vty_test_runner.py8
2 files changed, 8 insertions, 8 deletions
diff --git a/openbsc/tests/ctrl_test_runner.py b/openbsc/tests/ctrl_test_runner.py
index 46c4dcf01..fb6902705 100644
--- a/openbsc/tests/ctrl_test_runner.py
+++ b/openbsc/tests/ctrl_test_runner.py
@@ -155,11 +155,11 @@ class TestCtrlBSC(TestCtrlBase):
os.unlink("tmp_dummy_sock")
def ctrl_command(self):
- return ["./src/osmo-bsc/osmo-bsc", "-r", "tmp_dummy_sock", "-c",
- "doc/examples/osmo-bsc/osmo-bsc.cfg"]
+ return ["./src/osmo-bsc/osmo-bsc-sccplite", "-r", "tmp_dummy_sock", "-c",
+ "doc/examples/osmo-bsc-sccplite/osmo-bsc-sccplite.cfg"]
def ctrl_app(self):
- return (4249, "./src/osmo-bsc/osmo-bsc", "OsmoBSC", "bsc")
+ return (4249, "./src/osmo-bsc/osmo-bsc-sccplite", "OsmoBSC", "bsc")
def testCtrlErrs(self):
r = self.do_get('invalid')
@@ -606,7 +606,7 @@ class TestCtrlNAT(TestCtrlBase):
# added. e.g. by implementing a get for the list.
def add_bsc_test(suite, workdir):
- if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc")):
+ if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc-sccplite")):
print("Skipping the BSC test")
return
test = unittest.TestLoader().loadTestsFromTestCase(TestCtrlBSC)
diff --git a/openbsc/tests/vty_test_runner.py b/openbsc/tests/vty_test_runner.py
index 8bec7c0a6..a3161fba1 100644
--- a/openbsc/tests/vty_test_runner.py
+++ b/openbsc/tests/vty_test_runner.py
@@ -579,11 +579,11 @@ class TestVTYNITB(TestVTYGenericBSC):
class TestVTYBSC(TestVTYGenericBSC):
def vty_command(self):
- return ["./src/osmo-bsc/osmo-bsc", "-c",
- "doc/examples/osmo-bsc/osmo-bsc.cfg"]
+ return ["./src/osmo-bsc/osmo-bsc-sccplite", "-c",
+ "doc/examples/osmo-bsc-sccplite/osmo-bsc-sccplite.cfg"]
def vty_app(self):
- return (4242, "./src/osmo-bsc/osmo-bsc", "OsmoBSC", "bsc")
+ return (4242, "./src/osmo-bsc/osmo-bsc-sccplite", "OsmoBSC", "bsc")
def testConfigNetworkTree(self):
self._testConfigNetworkTree()
@@ -1113,7 +1113,7 @@ def nat_bsc_sock_test(nr, tk, verbose = False, proc=None):
return bsc
def add_bsc_test(suite, workdir):
- if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc")):
+ if not os.path.isfile(os.path.join(workdir, "src/osmo-bsc/osmo-bsc-sccplite")):
print("Skipping the BSC test")
return
test = unittest.TestLoader().loadTestsFromTestCase(TestVTYBSC)