Skip to content

Commit 26522a6

Browse files
authored
Merge pull request #30313 from mrc0mmand/ubuntu-ci
Reduce the number of deny-list files for Ubuntu CI
2 parents 67bc3c1 + 30349b0 commit 26522a6

File tree

6 files changed

+10
-0
lines changed

6 files changed

+10
-0
lines changed

test/TEST-25-IMPORT/deny-list-ubuntu-ci

Whitespace-only changes.

test/TEST-30-ONCLOCKCHANGE/deny-list-ubuntu-ci-i386

Whitespace-only changes.

test/TEST-36-NUMAPOLICY/deny-list-ubuntu-ci-s390x

Whitespace-only changes.

test/TEST-36-NUMAPOLICY/test.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,9 @@ else
1414
QEMU_OPTIONS+=" -numa node,nodeid=0"
1515
fi
1616

17+
if [[ "$(uname -m)" =~ ^(s390x|ppc)$ ]]; then
18+
echo "QEMU doesn't support NUMA nodes on $(uname -m), skipping the test"
19+
exit 0
20+
fi
21+
1722
do_test "$@"

test/TEST-83-BTRFS/deny-list-ubuntu-ci

Whitespace-only changes.

test/TEST-83-BTRFS/test.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ if ! command -v btrfs >/dev/null || ! command -v mkfs.btrfs >/dev/null; then
1717
exit 0
1818
fi
1919

20+
if ! btrfs filesystem mkswapfile --help >/dev/null; then
21+
echo "TEST: $TEST_DESCRIPTION [SKIPPED]: 'btrfs filesystem' doesn't support 'mkswapfile' subcommand" >&2
22+
exit 0
23+
fi
24+
2025
test_append_files() {
2126
install_btrfs
2227
image_install sync

0 commit comments

Comments
 (0)