mirror of
				https://github.com/davidgiven/fluxengine.git
				synced 2025-10-24 11:11:02 -07:00 
			
		
		
		
	Let the tests run on OSX.
This commit is contained in:
		| @@ -1,8 +1,8 @@ | ||||
| #!/bin/sh | ||||
| set -e | ||||
|  | ||||
| if [ $(uname) != "Linux" ]; then | ||||
| 	echo "Skipping test as not on Linux" | ||||
| if [ "$(uname)" != "Linux" -a "$(uname)" != "Darwin" ]; then | ||||
| 	echo "Skipping test as not on Linux" >&2 | ||||
| 	exit 0 | ||||
| fi | ||||
|  | ||||
| @@ -16,7 +16,7 @@ shift | ||||
|  | ||||
| trap "rm -f $srcfile $fluxfile $destfile" EXIT | ||||
|  | ||||
| dd if=/dev/urandom of=$srcfile bs=1M count=2 2>&1 | ||||
| dd if=/dev/urandom of=$srcfile bs=1048576 count=2 2>&1 | ||||
|  | ||||
| ./fluxengine write $format -i $srcfile -d $fluxfile "$@" | ||||
| ./fluxengine read $format -s $fluxfile -o $destfile "$@" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user