|
Andrei Stepanov |
81473c |
#!/bin/bash
|
|
Andrei Stepanov |
81473c |
# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
Andrei Stepanov |
81473c |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# runtest.sh of /CoreOS/vim/Regression/vim-in-ex-mode-incorrectly-gives-an-eol-error
|
|
Andrei Stepanov |
81473c |
# Description: Test for vim in ex mode incorrectly gives an eol error
|
|
Andrei Stepanov |
81473c |
# Author: David Kutalek <dkutalek@redhat.com>
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# Copyright (c) 2010 Red Hat, Inc. All rights reserved.
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# This copyrighted material is made available to anyone wishing
|
|
Andrei Stepanov |
81473c |
# to use, modify, copy, or redistribute it subject to the terms
|
|
Andrei Stepanov |
81473c |
# and conditions of the GNU General Public License version 2.
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# This program is distributed in the hope that it will be
|
|
Andrei Stepanov |
81473c |
# useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
Andrei Stepanov |
81473c |
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
Andrei Stepanov |
81473c |
# PURPOSE. See the GNU General Public License for more details.
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# You should have received a copy of the GNU General Public
|
|
Andrei Stepanov |
81473c |
# License along with this program; if not, write to the Free
|
|
Andrei Stepanov |
81473c |
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Andrei Stepanov |
81473c |
# Boston, MA 02110-1301, USA.
|
|
Andrei Stepanov |
81473c |
#
|
|
Andrei Stepanov |
81473c |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
# Include rhts environment
|
|
Andrei Stepanov |
81473c |
. /usr/bin/rhts-environment.sh
|
|
Andrei Stepanov |
81473c |
. /usr/lib/beakerlib/beakerlib.sh
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
PACKAGE="vim"
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
rlJournalStart
|
|
Andrei Stepanov |
81473c |
rlPhaseStartSetup
|
|
Andrei Stepanov |
81473c |
rlAssertRpm vim-minimal
|
|
Andrei Stepanov |
81473c |
rlPhaseEnd
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
rlPhaseStartTest
|
|
Andrei Stepanov |
81473c |
rlRun "ex -u NONE ~/.bash_profile < ./exdoublequote"
|
|
Andrei Stepanov |
81473c |
rlRun "ex -u NONE ~/.bash_profile < ./expounddoublequote"
|
|
Andrei Stepanov |
81473c |
rlPhaseEnd
|
|
Andrei Stepanov |
81473c |
|
|
Andrei Stepanov |
81473c |
rlJournalPrintText
|
|
Andrei Stepanov |
81473c |
rlJournalEnd
|