neels has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/31871 )
Change subject: fix 'make vty-test' for --disable-gb ......................................................................
fix 'make vty-test' for --disable-gb
Change-Id: Ib6aec784d3b20cd56cb6bfab9ff17da35a282406 --- M tests/Makefile.am 1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/71/31871/1
diff --git a/tests/Makefile.am b/tests/Makefile.am index 275cf5f..55124ca 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -701,6 +701,7 @@ # pass -u to osmo_verify_transcript_vty.py by doing: # make vty-test U=-u
+if ENABLE_GB vty-test-ns2: $(MAKE) -C $(top_builddir)/utils osmo-ns-dummy osmo_verify_transcript_vty.py -v \ @@ -709,6 +710,10 @@ $(U) $(srcdir)/gb/gprs_ns2*.vty osmotestvty.py -p $(abs_top_srcdir)/tests/gb -w $(abs_top_builddir)/tests/gb -v osmotestconfig.py -p $(abs_top_srcdir)/tests/gb -w $(abs_top_builddir)/tests/gb -v +else +vty-test-ns2: + echo "Not running vty-test-ns2 because osmo-ns-dummy is not built (--disable-gb)" +endif
vty-test-logging: osmo_verify_transcript_vty.py -v \