mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
1101c02c2a
This adds infrastructure to the Rust test suite for destructive tests, and adds a new `transactionality` test which runs rpm-ostree in a loop (along with `ostree-finalize-staged`) and repeatedly uses either `kill -9`, `reboot` and `reboot -ff`. The main goal here is to flush out any "logic errors". So far I've validated that this passes a lot of cycles using ``` $ kola run --qemu-image=fastbuild-fedora-coreos-ostree-qemu.qcow2 ext.ostree.destructive-rs.transactionality --debug --multiply 8 --parallel 4 ``` a number of times.
18 lines
690 B
Makefile
18 lines
690 B
Makefile
DESTDIR ?=
|
|
|
|
TESTDIRS := $(shell find -mindepth 1 -maxdepth 1 -type d)
|
|
LIBSCRIPTS := $(shell ls *.sh)
|
|
|
|
KOLA_TESTDIR = $(DESTDIR)/usr/lib/coreos-assembler/tests/kola/ostree/
|
|
|
|
all:
|
|
for x in $(LIBSCRIPTS); do bash -n "$${x}"; done
|
|
(cd ../inst && cargo run --release -- list-destructive) > destructive-list.txt
|
|
|
|
install:
|
|
install -D -m 0644 -t $(KOLA_TESTDIR) $(LIBSCRIPTS)
|
|
for x in $(TESTDIRS); do rsync -rlv ./$${x} $(KOLA_TESTDIR)/; done
|
|
install -D -m 0755 -t $(KOLA_TESTDIR)/nondestructive-rs ../inst/target/release/ostree-test
|
|
install -D -m 0644 destructive-stamp.ign $(KOLA_TESTDIR)/destructive-rs/config.ign
|
|
./install-wrappers.sh destructive-list.txt $(KOLA_TESTDIR)/destructive-rs
|