mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Group tests for profiling instrumentation together, NFC This will make it easier to test changes to the code coverage logic. There are a handful of tests which relate to profiling which I have not moved. These include tests for the driver and for the SIL optimizer. It makes more sense to keep those tests where they are. * Rename a test file, NFC This file tests code coverage of primary files, so I've changed the name of the file to reflect that. * Simplify the check lines in a test, NFC This file tests code coverage of closures. It had several check lines which obscured the meaning of the test, and its check lines were in a strange order. Remove the extra checks and disable -emit-sorted-sil.
22 lines
1.0 KiB
Swift
22 lines
1.0 KiB
Swift
// RUN: %target-swift-frontend -Xllvm -sil-full-demangle -profile-generate -profile-coverage-mapping -emit-sorted-sil -emit-sil -module-name coverage_default_args %s | %FileCheck %s
|
|
|
|
// CHECK-LABEL: sil_coverage_map {{.*}}// coverage_default_args.closureInArgs(f: (Swift.Int) -> Swift.Int) -> ()
|
|
// CHECK-NEXT: [[@LINE+5]]:59 -> [[@LINE+7]]:2 : 0
|
|
// CHECK-NOT: [[@LINE+4]]:59 -> [[@LINE+6]]:2 : 0
|
|
|
|
// CHECK-LABEL: sil_coverage_map {{.*}}// closure #1 (Swift.Int) -> Swift.Int in default argument 0 of coverage_default_args.closureInArgs(f: (Swift.Int) -> Swift.Int) -> ()
|
|
// CHECK-NEXT: [[@LINE+1]]:41 -> [[@LINE+1]]:57 : 0
|
|
func closureInArgs(f : ((Int) -> Int) = { i1 in i1 + 1 }) {
|
|
f(3)
|
|
}
|
|
|
|
// CHECK-LABEL: sil_coverage_map {{.*}}// coverage_default_args.hasDefaultArgs
|
|
// CHECK: [[@LINE+1]]:35 -> {{[0-9]+}}:2 : 0
|
|
func hasDefaultArgs(i : Int = 10) {
|
|
}
|
|
|
|
// CHECK-LABEL: sil_coverage_map {{.*}}// coverage_default_args.autoClosureInArgs
|
|
// CHECK: [[@LINE+1]]:50 -> {{[0-9]+}}:2 : 0
|
|
func autoClosureInArgs(b : Bool = true && false) {
|
|
}
|