41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| // Generated by `regen-test-files`. Do not edit manually.
 | |
| 
 | |
| // Build rules for ART run-test `2022-Invariantloops`.
 | |
| 
 | |
| package {
 | |
|     // See: http://go/android-license-faq
 | |
|     // A large-scale-change added 'default_applicable_licenses' to import
 | |
|     // all of the 'license_kinds' from "art_license"
 | |
|     // to get the below license kinds:
 | |
|     //   SPDX-license-identifier-Apache-2.0
 | |
|     default_applicable_licenses: ["art_license"],
 | |
| }
 | |
| 
 | |
| // Test's Dex code.
 | |
| java_test {
 | |
|     name: "art-run-test-2022-Invariantloops",
 | |
|     defaults: ["art-run-test-defaults"],
 | |
|     test_config_template: ":art-run-test-target-template",
 | |
|     srcs: ["src/**/*.java"],
 | |
|     data: [
 | |
|         ":art-run-test-2022-Invariantloops-expected-stdout",
 | |
|         ":art-run-test-2022-Invariantloops-expected-stderr",
 | |
|     ],
 | |
| }
 | |
| 
 | |
| // Test's expected standard output.
 | |
| genrule {
 | |
|     name: "art-run-test-2022-Invariantloops-expected-stdout",
 | |
|     out: ["art-run-test-2022-Invariantloops-expected-stdout.txt"],
 | |
|     srcs: ["expected-stdout.txt"],
 | |
|     cmd: "cp -f $(in) $(out)",
 | |
| }
 | |
| 
 | |
| // Test's expected standard error.
 | |
| genrule {
 | |
|     name: "art-run-test-2022-Invariantloops-expected-stderr",
 | |
|     out: ["art-run-test-2022-Invariantloops-expected-stderr.txt"],
 | |
|     srcs: ["expected-stderr.txt"],
 | |
|     cmd: "cp -f $(in) $(out)",
 | |
| }
 |