aboutsummaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorRyan S. Arnold <ryan.arnold@linaro.org>2014-02-05 16:57:47 -0600
committerRyan S. Arnold <ryan.arnold@linaro.org>2014-02-05 16:57:47 -0600
commit05e480ece35403848f8ea4d3137f6d8e54fdb24b (patch)
tree292773c5b9b18ce91609252fadce12fa17267612 /test.sh
parent053b847e35054d9e4782c4baa7d2c1dd26cd1672 (diff)
test.sh: Don't have tests rely on 'Completed' message if they don't use --build or --checkout.
Change-Id: I6f5cb7ff78b648721caf6bd392fbe0a2ac089e6f
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/test.sh b/test.sh
index 66746b2..591a520 100755
--- a/test.sh
+++ b/test.sh
@@ -174,19 +174,19 @@ test_pass()
}
cb_commands="--dry-run"
-match="Complete build process took"
+match=''
test_pass "${cb_commands}" "${match}"
cb_commands="--dryrun"
-match="Complete build process took"
+match=''
test_pass "${cb_commands}" "${match}"
cb_commands="--dry"
-match="Complete build process took"
+match=''
test_pass "${cb_commands}" "${match}"
cb_commands="-dry"
-match="Complete build process took"
+match=''
test_pass "${cb_commands}" "${match}"
cb_commands="--dr"
@@ -227,7 +227,7 @@ match=''
test_pass "${cb_commands}" "${match}"
cb_commands="--target foo"
-match="Complete build process took"
+match=''
test_pass "${cb_commands}" "${match}"
cb_commands="--build=all"