From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6223 invoked by alias); 12 May 2010 11:59:50 -0000 Received: (qmail 6207 invoked by uid 9699); 12 May 2010 11:59:49 -0000 Date: Wed, 12 May 2010 11:59:00 -0000 Message-ID: <20100512115949.6205.qmail@sourceware.org> From: mornfall@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/test Makefile.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2010-05/txt/msg00028.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mornfall@sourceware.org 2010-05-12 11:59:46 Modified files: test : Makefile.in Log message: Run tests in alphabetical (and thus stable across machines) order. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/Makefile.in.diff?cvsroot=lvm2&r1=1.41&r2=1.42 --- LVM2/test/Makefile.in 2010/05/12 11:23:16 1.41 +++ LVM2/test/Makefile.in 2010/05/12 11:59:46 1.42 @@ -26,7 +26,7 @@ abs_top_srcdir = @abs_top_srcdir@ T ?= . -RUN = $(shell find -regextype posix-egrep -name t-\*.sh -and -regex ".*($(T)).*") +RUN = $(shell find -regextype posix-egrep -name t-\*.sh -and -regex ".*($(T)).*" | sort) # Shell quote; SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))