mirror of
				https://github.com/samba-team/samba.git
				synced 2025-11-04 00:23:49 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			708 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			708 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# run a quick set of filesystem tests
 | 
						|
 | 
						|
ADDARGS="$*"
 | 
						|
 | 
						|
incdir=`dirname $0`
 | 
						|
. $incdir/test_functions.sh
 | 
						|
 | 
						|
tests="BASE-UNLINK BASE-ATTR BASE-DELETE"
 | 
						|
tests="$tests BASE-TCON BASE-OPEN"
 | 
						|
tests="$tests BASE-CHKPATH RAW-QFSINFO RAW-QFILEINFO RAW-SFILEINFO"
 | 
						|
tests="$tests RAW-MKDIR RAW-SEEK RAW-OPEN RAW-WRITE"
 | 
						|
tests="$tests RAW-UNLINK RAW-READ RAW-CLOSE RAW-IOCTL RAW-RENAME"
 | 
						|
tests="$tests RAW-EAS RAW-STREAMS"
 | 
						|
 | 
						|
for t in $tests; do
 | 
						|
    plantest "$t" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$SERVER/tmp -U"\$USERNAME"%"\$PASSWORD" $t
 | 
						|
done
 | 
						|
 | 
						|
name=BASE-OPEN
 | 
						|
plantest "ntvfs/cifs $name" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $ADDARGS //\$NETBIOSNAME/cifs -U"\$USERNAME"%"\$PASSWORD" $name
 |