aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcbuild2.sh1
-rwxr-xr-xtest.sh8
2 files changed, 9 insertions, 0 deletions
diff --git a/cbuild2.sh b/cbuild2.sh
index 959af23c..ebb819cf 100755
--- a/cbuild2.sh
+++ b/cbuild2.sh
@@ -186,6 +186,7 @@ dump()
echo "Bootstrap ${bootstrap}"
echo "Install ${install}"
+ echo "Source Update ${supdate}"
}
usage()
diff --git a/test.sh b/test.sh
index d7699d7b..3df92ba6 100755
--- a/test.sh
+++ b/test.sh
@@ -390,6 +390,14 @@ cb_commands="--disable install --dump"
match='Install no'
test_pass "${cb_commands}" "${match}"
+cb_commands="--dump"
+match='Source Update yes'
+test_pass "${cb_commands}" "${match}"
+
+cb_commands="--disable update --dump"
+match='Source Update no'
+test_pass "${cb_commands}" "${match}"
+
# This tests that --checkout and --build can be run together.
cb_commands="--dryrun --target arm-none-linux-gnueabihf --checkout all --build all"
match=''