Add Buffyboard Man pages and Unify Build
This commit is contained in:
parent
edeb5e4a35
commit
0eae2838dc
28 changed files with 243 additions and 191 deletions
23
test/test-uses-fb-backend-by-default.sh
Executable file
23
test/test-uses-fb-backend-by-default.sh
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#!/bin/bash
|
||||
|
||||
log=tmp.log
|
||||
|
||||
source "$(dirname "${BASH_SOURCE[0]}")/helpers.sh"
|
||||
|
||||
function clean_up() {
|
||||
rm -f "$log"
|
||||
}
|
||||
|
||||
trap clean_up EXIT
|
||||
|
||||
info "Running unl0kr"
|
||||
run_unl0kr_async "$log"
|
||||
|
||||
info "Verifying output"
|
||||
if ! grep "Using framebuffer backend" "$log"; then
|
||||
error "Expected framebuffer backend to be selected"
|
||||
cat "$log"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ok
|
||||
Loading…
Add table
Add a link
Reference in a new issue