24 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#! /bin/bash
 | 
						|
#
 | 
						|
# Usage:
 | 
						|
#   script/test
 | 
						|
#   script/test <test_file>
 | 
						|
 | 
						|
if [ ! -d tmp ]; then
 | 
						|
  mkdir tmp
 | 
						|
fi
 | 
						|
 | 
						|
if [ -d test/dest ]; then
 | 
						|
  rm -r test/dest
 | 
						|
fi
 | 
						|
 | 
						|
if [ -z "$1" ]; then
 | 
						|
  TEST_FILES=$(ruby -e "puts Dir.glob('test/test_*.rb')")
 | 
						|
else
 | 
						|
  TEST_FILES="$@"
 | 
						|
fi
 | 
						|
 | 
						|
set -x
 | 
						|
 | 
						|
time bundle exec ruby -Ilib -Itest -rloader $TEST_FILES --profile
 |