44c8f3c514
Based on RHEL 8 gating tests. Resolves: rhbz#2029986
36 lines
1.0 KiB
Bash
Executable File
36 lines
1.0 KiB
Bash
Executable File
#!/bin/bash
|
|
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# runtest.sh of /anaconda-user-help.git/branding
|
|
# Description: Anaconda user help branding test
|
|
# Author: Peter Kotvan <pkotvan@redhat.com>
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
#
|
|
# Copyright (c) 2019 Red Hat, Inc.
|
|
#
|
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
# Include Beaker environment
|
|
. /usr/bin/rhts-environment.sh || exit 1
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
rlJournalStart
|
|
# rlPhaseStartSetup
|
|
# rlPhaseEnd
|
|
|
|
rlPhaseStartTest
|
|
rlLog "Verify whether anaconda user help contains the string fedora."
|
|
rlRun -s "rpm -ql anaconda-user-help | xargs grep -irq fedora" 123
|
|
if [[ $? -ne 123 ]]
|
|
then
|
|
rlFileSubmit ${rlRun_LOG} "fedora_string.log"
|
|
fi
|
|
rlPhaseEnd
|
|
|
|
# rlPhaseStartCleanup
|
|
# rlPhaseEnd
|
|
rlJournalPrintText
|
|
rlJournalEnd
|