aboutsummaryrefslogtreecommitdiffstats
path: root/longbow
diff options
context:
space:
mode:
Diffstat (limited to 'longbow')
-rw-r--r--longbow/README.md2
-rw-r--r--longbow/scripts/build-package.sh8
2 files changed, 5 insertions, 5 deletions
diff --git a/longbow/README.md b/longbow/README.md
index 5da82a69..53accf64 100644
--- a/longbow/README.md
+++ b/longbow/README.md
@@ -24,7 +24,7 @@ development and xUnit style unit testing. Using LongBow's to aid an offensive-de
of using its entry and exit assertions in your code. Similarly using LongBow's unit-test framework uses the same entry
and exit assertions in the unit test cases themselves. The runtime assertions and the unit-test assertions work
together in the unit test framework and do not conflict. This framework grew out of the need for a unit testing for
-Test Driven Development on the CCNx Distillery software distribution.
+Test Driven Development on the CCNx Distillery software distribution.
Two other test frameworks were considered and used to develop unit tests: Unity and GoogleTest. Ultimately Unity
was not used (although this framework is indebted to Unity for inspiration) mainly due to ease-of-use problems,
and Googletest was not used mainly because it is a C++ framework, is not compatible with some features of C99, and is
diff --git a/longbow/scripts/build-package.sh b/longbow/scripts/build-package.sh
index 9bab45e5..ebf9afd1 100644
--- a/longbow/scripts/build-package.sh
+++ b/longbow/scripts/build-package.sh
@@ -36,7 +36,7 @@ update_cmake_repo() {
update_qt_repo() {
DISTRIBUTION_CODENAME=$1
- if [ "$DISTRIBUTION_CODENAME" != "trusty" ] && [ "$DISTRIBUTION_CODENAME" != "xenial" ]; then
+ if [ "$DISTRIBUTION_CODENAME" != "bionic" ] && [ "$DISTRIBUTION_CODENAME" != "xenial" ]; then
echo "No valid distribution specified when calling 'update_qt_repo'. Exiting.."
exit -1
fi
@@ -68,9 +68,9 @@ update_fdio_repo() {
REPO_VPP_URL="${NEXUS_PROXY}/content/repositories/fd.io.stable.1701.ubuntu.xenial.main/"
REPO=${REPO_NAME:-"master.ubuntu.xenial.main"}
REPO_CICN_URL="${NEXUS_PROXY}/content/repositories/fd.io.${REPO}"
- elif [ "$DISTRIB_CODENAME" == "trusty" ]; then
- REPO_VPP_URL="${NEXUS_PROXY}/content/repositories/fd.io.stable.1701.ubuntu.trusty.main/"
- REPO=${REPO_NAME:-"master.ubuntu.trusty.main"}
+ elif [ "$DISTRIB_CODENAME" == "bionic" ]; then
+ REPO_VPP_URL="${NEXUS_PROXY}/content/repositories/fd.io.stable.1701.ubuntu.bionic.main/"
+ REPO=${REPO_NAME:-"master.ubuntu.bionic.main"}
REPO_CICN_URL="${NEXUS_PROXY}/content/repositories/fd.io.${REPO}"
else
echo "Distribution $DISTRIB_CODENAME is not supported"