tests: Execute tests in a clean (temporary) directory

Instead of executing in the current (build) directory, create a
temporary directory and change into it before running any tests. This
ensures that tests aren't relying on left-overs from previous test runs.

Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
This commit is contained in:
Jeremy Kerr 2012-06-13 16:56:28 +08:00
parent 1be14f0c9b
commit b3edb1fb72
4 changed files with 22 additions and 17 deletions

View file

@ -2,5 +2,7 @@
. "$srcdir/common.sh"
"$sbsign" --cert "$cert" --key "$key" --output test.signed "$image"
"$sbverify" --cert "$cert" test.signed
signed="test.signed"
"$sbsign" --cert "$cert" --key "$key" --output "$signed" "$image"
"$sbverify" --cert "$cert" "$signed"