Skip to content
Snippets Groups Projects
Commit e0a13716 authored by Martyn Welch's avatar Martyn Welch
Browse files

Tweak to use common and arch specific binaries


Signed-off-by: default avatarMartyn Welch <martyn.welch@collabora.co.uk>
parent cc0021ff
No related branches found
No related tags found
1 merge request!2T4802: Fix up issues with apparmor-dbus testing
......@@ -12,7 +12,7 @@ metadata:
run:
steps:
- LAUNCH_DBUS="no" ./run-aa-test ./dbus.expected ./dbus
- LAUNCH_DBUS="no" common/run-aa-test ./dbus.expected ./dbus
parse:
pattern: 'RESULT:(?P<result>\w+):(?P<test_case_id>[^:]+):'
......
#!/bin/sh
# vim: set sts=4 sw=4 et tw=0 :
case `uname -m` in
x86_64) PREFIX=amd64/bin; ;;
armv7l) PREFIX=armhf/bin; ;;
aarch64) PREFIX=arm64/bin; ;;
esac
echo "$0: setup"
. common/common.sh
ensure_dbus_session
......@@ -10,7 +16,7 @@ dbus-monitor &
MONITOR_PID=$!
echo "$0: running server"
./dbus-server &
${PREFIX}/dbus-server &
SERVER_PID=$!
echo "$0: waiting a second"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment