mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
set -e
 | 
						|
 | 
						|
./build.sh --sysroot none "$@"
 | 
						|
 | 
						|
rm -r target/out || true
 | 
						|
 | 
						|
scripts/tests.sh no_sysroot
 | 
						|
 | 
						|
./build.sh "$@"
 | 
						|
 | 
						|
scripts/tests.sh base_sysroot
 | 
						|
scripts/tests.sh extended_sysroot
 |