From 6a9c8551d2449b4a9581b403562338be765861a5 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Feb 27 2025 13:30:19 +0000 Subject: Fix test data generation script Signed-off-by: Lubomír Sedlář --- diff --git a/tests/data/specs/build.sh b/tests/data/specs/build.sh index fea78ac..a40f5de 100755 --- a/tests/data/specs/build.sh +++ b/tests/data/specs/build.sh @@ -35,6 +35,11 @@ for spec in $DIR/*.spec; do if [ "$(basename $spec)" == "dummy-skype.spec" ]; then continue fi + if [ "$(basename $spec)" == "dummy-fcoe-target-utils.spec" ]; then + if [ "$target" == "ppc" -o "$target" == "s390" -o "$target" == "s390x" ]; then + continue + fi + fi echo "Building ${spec/.spec/} for $target" rpmbuild --quiet --target=$target -ba --nodeps --define "_srcrpmdir $DIR/../repo/src" --define "_rpmdir $DIR/../repo" $spec done