mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	 5330ccdb34
			
		
	
	
		5330ccdb34
		
	
	
	
	
		
			
			For PGO/coverage tests that don't need to build or run an actual artifact, we can use `-Zno-profiler-runtime` to run the test even when the profiler runtime is not available.
		
			
				
	
	
		
			22 lines
		
	
	
		
			618 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			618 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Test that `-Cinstrument-coverage=off` does not add coverage instrumentation to LLVM IR.
 | |
| 
 | |
| //@ compile-flags: -Zno-profiler-runtime
 | |
| //@ revisions: n no off false_ zero
 | |
| //@ [n] compile-flags: -Cinstrument-coverage=n
 | |
| //@ [no] compile-flags: -Cinstrument-coverage=no
 | |
| //@ [off] compile-flags: -Cinstrument-coverage=off
 | |
| //@ [false_] compile-flags: -Cinstrument-coverage=false
 | |
| //@ [zero] compile-flags: -Cinstrument-coverage=0
 | |
| 
 | |
| // CHECK-NOT: __llvm_profile_filename
 | |
| // CHECK-NOT: __llvm_coverage_mapping
 | |
| 
 | |
| #![crate_type = "lib"]
 | |
| 
 | |
| #[inline(never)]
 | |
| fn some_function() {}
 | |
| 
 | |
| pub fn some_other_function() {
 | |
|     some_function();
 | |
| }
 |