31 lines
435 B
Bash
Executable File
31 lines
435 B
Bash
Executable File
#!/bin/bash
|
|
|
|
log=tmp.log
|
|
conf=tmp.conf
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/helpers.sh"
|
|
|
|
function clean_up() {
|
|
rm -f "$log" "$conf"
|
|
}
|
|
|
|
trap clean_up EXIT
|
|
|
|
info "Writing config"
|
|
cat << EOF > "$conf"
|
|
[general]
|
|
backend=drm
|
|
EOF
|
|
|
|
info "Running unl0kr"
|
|
run_unl0kr_async "$log" "$conf"
|
|
|
|
info "Verifying output"
|
|
if ! grep "Using DRM backend" "$log"; then
|
|
error "Expected DRM backend to be selected"
|
|
cat "$log"
|
|
exit 1
|
|
fi
|
|
|
|
ok
|