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:
parent
1be14f0c9b
commit
b3edb1fb72
4 changed files with 22 additions and 17 deletions
|
@ -2,11 +2,10 @@
|
|||
|
||||
. "$srcdir/common.sh"
|
||||
|
||||
sig=test.sig
|
||||
signed=test.signed
|
||||
sig="test.sig"
|
||||
signed="test.signed"
|
||||
|
||||
trap 'rm -f "$sig" "$signed"' EXIT
|
||||
|
||||
"$sbsign" --cert "$cert" --key "$key" --detached --output $sig "$image"
|
||||
"$sbattach" --attach $sig $signed
|
||||
"$sbsign" --cert "$cert" --key "$key" --detached --output "$sig" "$image"
|
||||
cp "$image" "$signed"
|
||||
"$sbattach" --attach "$sig" "$signed"
|
||||
"$sbverify" --cert "$cert" "$signed"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue