24 lines
731 B
Bash
Executable File
24 lines
731 B
Bash
Executable File
#!/bin/bash
|
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
rlJournalStart
|
|
rlPhaseStartSetup
|
|
rlRun "tmp=\$(mktemp -d)" 0 "Create tmp directory"
|
|
rlRun "pushd $tmp"
|
|
rlRun "set -o pipefail"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest
|
|
rlRun "fc-weight --help | tee output" 0 "Check help message for fc-weight"
|
|
rlAssertGrep "fontconfig weight" "output"
|
|
rlRun "gen-fontconf --help | tee output" 0 "Check help message for gen-fontconf"
|
|
rlAssertGrep "fontconfig syntax" "output"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartCleanup
|
|
rlRun "popd"
|
|
rlRun "rm -r $tmp" 0 "Remove tmp directory"
|
|
rlPhaseEnd
|
|
rlJournalEnd
|