Really fix #53 this time: with or without -n.

This commit is contained in:
Juan RP
2014-08-23 16:25:51 +02:00
parent 5a1919e520
commit bc92b387cb
2 changed files with 8 additions and 3 deletions

View File

@ -22,9 +22,13 @@ install_existent_body() {
cd ..
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -y A
atf_check_equal $? 0
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -yn A B
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -y A B
atf_check_equal $? 0
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -yn B A
rm -r root
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -y A
atf_check_equal $? 0
xbps-install -r root -C empty.conf --repository=$PWD/some_repo -y B A
atf_check_equal $? 0
}