diff --git a/tests/data/specs/build.sh b/tests/data/specs/build.sh index fea78ace..a40f5deb 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