/
githubmirror
/
parted
Обзор
Документация
Войти
/
githubmirror
/
parted
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.0
tests/Makefile.am
56 строк
1 KB
Jim Meyering
tests: gpt: exercise creating all partition types; check for msftres bug
24 сен 2009, 23:21
24 сен 2009, 23:21
42eed56
Код
Авторство
О чём код?
TESTS = \ t0000-basic.sh \ t0010-script-no-ctrl-chars.sh \ t0100-print.sh \ t0200-gpt.sh \ t0201-gpt.sh \ t0202-gpt-pmbr.sh \ t0220-gpt-msftres.sh \ t0250-gpt.sh \ t0300-dos-on-gpt.sh \ t0400-loop-clobber-infloop.sh \ t1000-mkpartfs.sh \ t1100-busy-label.sh \ t1500-small-ext2.sh \ t1700-ext-probe.sh \ t2000-mkfs.sh \ t2100-mkswap.sh \ t2200-dos-label-recog.sh \ t2300-dos-label-extended-bootcode.sh \ t3000-constraints.sh \ t3100-resize-ext2-partion.sh \ t4000-sun-raid-type.sh \ t4100-msdos-partition-limits.sh \ t4100-dvh-partition-limits.sh \ t4100-msdos-starting-sector.sh \ t4200-partprobe.sh \ t5000-tags.sh \ t6000-dm.sh \ t7000-scripting.sh \ t8000-loop.sh EXTRA_DIST = \ $(TESTS) test-lib.sh lvm-utils.sh parted_dir = $(abs_top_builddir)/parted pp_dir = $(abs_top_builddir)/partprobe sep = $(PATH_SEPARATOR) CLEANFILES = init.sh all: init.sh init.sh: Makefile.in rm -f $@-t $@ echo 'PARTED_USABLE_TEST_DIR="$(PARTED_USABLE_TEST_DIR)"' > $@-t echo 'abs_top_srcdir="$(abs_top_srcdir)"' >> $@-t echo 'PATH="$(parted_dir)$(sep)$(pp_dir)$(sep)$$PATH"' >> $@-t echo 'export PATH' >> $@-t chmod a-w $@-t mv $@-t $@ TESTS_ENVIRONMENT = \ exec 9>&2; \ export \ srcdir='$(srcdir)' \ CONFIG_HEADER='$(abs_top_builddir)/lib/config.h' \ ENABLE_DEVICE_MAPPER=$(ENABLE_DEVICE_MAPPER) \ ; $(SHELL)