mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-28 08:31:25 +00:00 
			
		
		
		
	 aa750c1ede
			
		
	
	aa750c1ede
	
	
	
		
			
			* tests : minor bash stuff ggml-ci * llama : fix build ggml-ci * tests : fix CUR_DIR -> ROOT_DIR ggml-ci * tests : fix fname ggml-ci
		
			
				
	
	
		
			12 lines
		
	
	
		
			197 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			197 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -eu
 | |
| 
 | |
| if [ $# -lt 1 ]
 | |
| then
 | |
|     # Start @llama.cpp scenario
 | |
|     behave --summary --stop --no-capture --exclude 'issues|wrong_usages|passkey' --tags llama.cpp
 | |
| else
 | |
|     behave "$@"
 | |
| fi
 |