On Wed, Apr 27, 2016 at 12:55:07PM +0800, Xiaoguang Wang wrote: > hello, > > On 03/23/2016 06:56 AM, Dave Chinner wrote: > > On Mon, Mar 21, 2016 at 04:31:28PM +0800, Xiaoguang Wang wrote: > >> From: Wang Xiaoguang <wangxg.fnst@xxxxxxxxxxxxxx> > >> > >> Since commit c0cfa5651f2d ("xfs/122: update against xfsprogs 4.3"), xfs/122 > >> has been updated against xfsprogs 4.3, so add necessary version check. > >> > >> Signed-off-by: Wang Xiaoguang <wangxg.fnst@xxxxxxxxxxxxxx> > > > > This sort of version test belongs in autoconf, not the tests > > themselves. > Would you please give me some hints about how to add version test > in autoconf, Well, first it helps to see what the problem is that your are trying ot work around. In general, if it's a compilation problem of a test program, then we use autoconf to set conditional defines to determine what gets compiled, and then write code that works for all the different versions we need to support. In this case, it's the test that is building source code to be compiled, so the problem is likely the test itself and the way it assmebles the header files for inclusion. That's what would need to be fixed.... > also in xfs/188, > I see similar usage: > if [ $XFSPROGS_VERSION -lt 21000 ]; then > _notrun "this test requires case-insensitive support" > fi That's really old and was done before we settled on the _require* rules patterns for explicitly checking for support in tools. Indeed, this should simply check whether mkfs supports the "-n version=ci" parameter, as we do for things like CRC support... i.e. _requires_xfs_case_insensitive() { _scratch_mkfs_xfs_supported -n version=ci >/dev/null 2>&1 \ || _notrun "mkfs.xfs doesn't have case-insensitive feature" } Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html