From b20e1f519238512381a6f18c4cd1a9eff5c7d280 Mon Sep 17 00:00:00 2001 From: Duncan Overbruck Date: Mon, 5 Aug 2019 11:49:40 +0200 Subject: [PATCH] Revert "tests: add another case to install_and_update_revdeps test" This reverts commit f6bc7f621c7afaedc2239ae0f479318dc1f62f47. --- tests/xbps/libxbps/shell/install_test.sh | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/xbps/libxbps/shell/install_test.sh b/tests/xbps/libxbps/shell/install_test.sh index 33635770..d76e7361 100644 --- a/tests/xbps/libxbps/shell/install_test.sh +++ b/tests/xbps/libxbps/shell/install_test.sh @@ -305,14 +305,12 @@ install_and_update_revdeps_body() { atf_check_equal $? 0 xbps-create -A noarch -n C-1.0_1 -s "C pkg" --dependencies "B-1.0_1" ../pkg atf_check_equal $? 0 - xbps-create -A noarch -n D-1.0_1 -s "D pkg" --dependencies "C>=1.0_1" ../pkg - atf_check_equal $? 0 xbps-rindex -d -a $PWD/*.xbps atf_check_equal $? 0 cd .. - xbps-install -r root --repository=repo -yvd C D + xbps-install -r root --repository=repo -yvd C atf_check_equal $? 0 atf_check_equal $(xbps-query -r root -p pkgver A) A-1.0_1 atf_check_equal $(xbps-query -r root -p pkgver B) B-1.0_1 @@ -323,20 +321,19 @@ install_and_update_revdeps_body() { atf_check_equal $? 0 xbps-create -A noarch -n B-1.0_2 -s "B pkg" --dependencies "A-1.0_2" ../pkg atf_check_equal $? 0 - xbps-create -A noarch -n C-1.0_2 -s "C pkg" --dependencies "A-1.0_2" ../pkg + xbps-create -A noarch -n C-1.0_2 -s "C pkg" --dependencies "B-1.0_2" ../pkg atf_check_equal $? 0 - xbps-create -A noarch -n E-1.0_1 -s "E pkg" --dependencies "C-1.0_2" ../pkg + xbps-create -A noarch -n D-1.0_1 -s "D pkg" --dependencies "C-1.0_2" ../pkg atf_check_equal $? 0 xbps-rindex -d -a $PWD/*.xbps atf_check_equal $? 0 cd .. - xbps-install -r root --repository=repo -yvd E + xbps-install -r root --repository=repo -yvd D atf_check_equal $? 0 atf_check_equal $(xbps-query -r root -p pkgver A) A-1.0_2 atf_check_equal $(xbps-query -r root -p pkgver B) B-1.0_2 atf_check_equal $(xbps-query -r root -p pkgver C) C-1.0_2 atf_check_equal $(xbps-query -r root -p pkgver D) D-1.0_1 - atf_check_equal $(xbps-query -r root -p pkgver E) E-1.0_1 } atf_test_case update_file_timestamps