From 5ecd180d916faf472a1a3e9baf577531ce1af562 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 24 Jul 2009 15:50:57 -0700 Subject: [PATCH] ulimit is a function of the shell and should be invoked as such. --- scripts/Makefile.am | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 8d9c112072..79e899954e 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -6,15 +6,13 @@ ZTEST=${top_builddir}/cmd/ztest/ztest ZPIOS=${top_srcdir}/scripts/zpios.sh check: - $(ZFS) -v - ulimit -c unlimited - $(ZTEST) -V - $(ZPIOS) -c file-raid0 -t tiny - $(ZPIOS) -c file-raid10 -t tiny - $(ZPIOS) -c file-raidz -t tiny - $(ZPIOS) -c file-raidz2 -t tiny - $(ZPIOS) -c lo-raid0 -t tiny - $(ZPIOS) -c lo-raid10 -t tiny - $(ZPIOS) -c lo-raidz -t tiny - $(ZPIOS) -c lo-raidz2 -t tiny - $(ZFS) -vu + @$(ZFS) -v + @echo + @echo -n "====================================" + @echo -n " ZTEST " + @echo "====================================" + @echo + @$(shell ulimit -c unlimited) + @$(ZTEST) -V + @echo + @$(ZFS) -vu