mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			229 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| echo
 | |
| echo "==== Running Tests on SerenityOS ===="
 | |
| 
 | |
| run-tests --show-progress=false
 | |
| fail_count=$?
 | |
| 
 | |
| echo "Failed: $fail_count" > ./test-results.log
 | |
| 
 | |
| if test $DO_SHUTDOWN_AFTER_TESTS {
 | |
|     shutdown -n
 | |
| }
 | |
| 
 | |
| exit $fail_count
 | 
