From 2c7c4e1bf0d15bf54feb3c8f99052bc429f53448 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 29 Dec 2019 16:24:33 +0100 Subject: [PATCH] tests/xbps-create: fix the rejectfifo test. It was using -a (alternatives) rather than -A (architecture) so the test wasn't checking the exact error branch. --- tests/xbps/xbps-create/basic_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/xbps/xbps-create/basic_test.sh b/tests/xbps/xbps-create/basic_test.sh index 5e9a996f..a98b21f3 100644 --- a/tests/xbps/xbps-create/basic_test.sh +++ b/tests/xbps/xbps-create/basic_test.sh @@ -175,7 +175,7 @@ reject_fifo_file_head() { reject_fifo_file_body() { mkdir -p repo pkg_a mkfifo pkg_a/fifo - xbps-create -a noarch -n foo-1.0_1 -s "foo pkg" pkg_a + xbps-create -A noarch -n foo-1.0_1 -s "foo pkg" pkg_a atf_check_equal $? 1 }