function old new delta func_exec 127 100 -27 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# Copyright 2014 by Denys Vlasenko <vda.linux@googlemail.com>
 | 
						|
# Licensed under GPLv2, see file LICENSE in this source tree.
 | 
						|
 | 
						|
. ./testing.sh
 | 
						|
 | 
						|
# testing "description" "command" "result" "infile" "stdin"
 | 
						|
 | 
						|
mkdir -p find.tempdir
 | 
						|
touch find.tempdir/testfile
 | 
						|
 | 
						|
testing "find -type f" \
 | 
						|
	"cd find.tempdir && find -type f 2>&1" \
 | 
						|
	"./testfile\n" \
 | 
						|
	"" ""
 | 
						|
 | 
						|
optional FEATURE_FIND_EXEC
 | 
						|
testing "find -exec exitcode 1" \
 | 
						|
	"cd find.tempdir && find testfile -exec true {} \; 2>&1; echo \$?" \
 | 
						|
	"0\n" \
 | 
						|
	"" ""
 | 
						|
SKIP=
 | 
						|
optional FEATURE_FIND_EXEC_PLUS
 | 
						|
testing "find -exec exitcode 2" \
 | 
						|
	"cd find.tempdir && find testfile -exec true {} + 2>&1; echo \$?" \
 | 
						|
	"0\n" \
 | 
						|
	"" ""
 | 
						|
SKIP=
 | 
						|
# Surprisingly, "-exec false ;" results in exitcode 0! "-exec false +" is different!!!
 | 
						|
optional FEATURE_FIND_EXEC
 | 
						|
testing "find -exec exitcode 3" \
 | 
						|
	"cd find.tempdir && find testfile -exec false {} \; 2>&1; echo \$?" \
 | 
						|
	"0\n" \
 | 
						|
	"" ""
 | 
						|
SKIP=
 | 
						|
optional FEATURE_FIND_EXEC_PLUS
 | 
						|
testing "find -exec exitcode 4" \
 | 
						|
	"cd find.tempdir && find testfile -exec false {} + 2>&1; echo \$?" \
 | 
						|
	"1\n" \
 | 
						|
	"" ""
 | 
						|
SKIP=
 | 
						|
 | 
						|
# testing "description" "command" "result" "infile" "stdin"
 | 
						|
 | 
						|
rm -rf find.tempdir
 | 
						|
 | 
						|
exit $FAILCOUNT
 |