Skip to content

Commit

Permalink
tests/kola/root-reprovision: add reprovision tag
Browse files Browse the repository at this point in the history
This can be used to conveniently skip those tests by tag.
  • Loading branch information
jlebon committed Aug 5, 2022
1 parent 10cc857 commit c984972
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion tests/kola/root-reprovision/filesystem-only/test.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#!/bin/bash
# kola: { "platforms": "qemu", "minMemory": 4096, "timeoutMin": 15 }
# kola: { "platforms": "qemu", "minMemory": 4096, "timeoutMin": 15, "tags": "reprovision" }
#
# - platforms: qemu
# - This test should pass everywhere if it passes anywhere.
# - tags: reprovision
# - This test reprovisions the rootfs.
# - minMemory: 4096
# - Root reprovisioning requires at least 4GiB of memory.
# - timeoutMin: 15
Expand Down
4 changes: 3 additions & 1 deletion tests/kola/root-reprovision/linear/test.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/bash
# kola: { "platforms": "qemu", "minMemory": 4096, "additionalDisks": ["5G", "5G"], "timeoutMin": 15 }
# kola: { "platforms": "qemu", "minMemory": 4096, "additionalDisks": ["5G", "5G"], "timeoutMin": 15, "tags": "reprovision" }
#
# - platforms: qemu
# - This test should pass everywhere if it passes anywhere.
# - additionalDisks is only supported on qemu.
# - tags: reprovision
# - This test reprovisions the rootfs.
# - minMemory: 4096
# - Root reprovisioning requires at least 4GiB of memory.
# - additionalDisks: ["5G", "5G"]
Expand Down
4 changes: 3 additions & 1 deletion tests/kola/root-reprovision/luks/test.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#!/bin/bash
# kola: { "platforms": "qemu", "minMemory": 4096, "architectures": "!s390x", "timeoutMin": 15 }
# kola: { "platforms": "qemu", "minMemory": 4096, "architectures": "!s390x", "timeoutMin": 15, "tags": "reprovision" }
#
# - platforms: qemu
# - This test should pass everywhere if it passes anywhere.
# - tags: reprovision
# - This test reprovisions the rootfs.
# - minMemory: 4096
# - Root reprovisioning requires at least 4GiB of memory.
# - architectures: !s390x
Expand Down
4 changes: 3 additions & 1 deletion tests/kola/root-reprovision/raid1/test.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/bin/bash
# kola: { "platforms": "qemu", "minMemory": 4096, "additionalDisks": ["5G", "5G"], "timeoutMin": 15 }
# kola: { "platforms": "qemu", "minMemory": 4096, "additionalDisks": ["5G", "5G"], "timeoutMin": 15, "tags": "reprovision" }
#
# - platforms: qemu
# - This test should pass everywhere if it passes anywhere.
# - additionalDisks is only supported on qemu.
# - tags: reprovision
# - This test reprovisions the rootfs.
# - minMemory: 4096
# - Root reprovisioning requires at least 4GiB of memory.
# - additionalDisks: ["5G", "5G"]
Expand Down
4 changes: 3 additions & 1 deletion tests/kola/root-reprovision/swap-before-root/test.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/bin/bash
# kola: { "distros": "fcos", "platforms": "qemu", "minMemory": 4096, "timeoutMin": 15, "allowConfigWarnings": true }
# kola: { "distros": "fcos", "platforms": "qemu", "minMemory": 4096, "timeoutMin": 15, "allowConfigWarnings": true, "tags": "reprovision" }
#
# - distros: fcos
# - This test only runs on FCOS due to a problem enabling a swap partition on
# RHCOS. See: https://github.com/openshift/os/issues/665
# - platforms: qemu
# - This test should pass everywhere if it passes anywhere.
# - tags: reprovision
# - This test reprovisions the rootfs.
# - minMemory: 4096
# - Root reprovisioning requires at least 4GiB of memory.
# - timeoutMin: 15
Expand Down

0 comments on commit c984972

Please sign in to comment.