mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 09:56:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
export RUST_BACKTRACE=1
 | 
						|
 | 
						|
while true
 | 
						|
do
 | 
						|
    cargo test qc_ --release -- --nocapture
 | 
						|
    if [[ x$? != x0 ]] ; then
 | 
						|
        exit $?
 | 
						|
    fi
 | 
						|
done
 |