From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20934 invoked from network); 16 May 2000 17:33:38 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 16 May 2000 17:33:38 -0000 Received: (qmail 21813 invoked by alias); 16 May 2000 17:33:25 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 11419 Received: (qmail 21806 invoked from network); 16 May 2000 17:33:24 -0000 From: "Bart Schaefer" Message-Id: <1000516173314.ZM7709@candle.brasslantern.com> Date: Tue, 16 May 2000 17:33:14 +0000 X-Mailer: Z-Mail (5.0.0 30July97) To: zsh-workers@sunsite.auc.dk Subject: PATCH: Run selective tests MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii This simple tweak allows one to invoke make TESTNUM=53 check to (for example) run only the completion tests, or make TESTNUM='[0-4]' check to run only the basic shell tests, etc. Remmber that you probably get only Bourne shell globbing unless your /bin/sh is a link to zsh. Index: Test/Makefile.in =================================================================== @@ -45,7 +45,7 @@ cd $(dir_top) && \ $(MAKE) MODDIR=`pwd`/$(subdir)/Modules install.modules > /dev/null; \ fi - for f in $(sdir)/*.ztst; do \ + for f in $(sdir)/$(TESTNUM)*.ztst; do \ $(dir_top)/Src/zsh -f $(sdir)/ztst.zsh $$f; \ done rm -rf Modules -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com