mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-05 13:18:17 +03:00
718cca8055
Follow the precedent set in https://github.com/coreos/rpm-ostree/pull/2106 and rename the directory, to more clearly move away from the "uninstalled" test model. Prep for Rust-based tests.
14 lines
359 B
Makefile
14 lines
359 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
|
|
|
|
install:
|
|
install -D -m 0644 -t $(KOLA_TESTDIR) $(LIBSCRIPTS)
|
|
for x in $(TESTDIRS); do rsync -rlv ./$${x} $(KOLA_TESTDIR)/; done
|