1# UNSUPPORTED: system-windows 2# 3# RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t 4# RUN: lldb-test breakpoints %t %s | FileCheck %s 5 6breakpoint set -f case-sensitive.c -l 3 7# CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3 8# CHECK: At least one location. 9 10breakpoint set -f %p/Inputs/case-sensitive.c -l 3 11# CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3 12# CHECK: At least one location. 13 14breakpoint set -f %p/INPUTS/case-sensitive.c -l 3 15# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3 16# CHECK: 0 locations. 17 18breakpoint set -f Case-Sensitive.c -l 3 19# CHECK-LABEL: breakpoint set -f Case-Sensitive.c -l 3 20# CHECK: 0 locations. 21 22breakpoint set -f %p/INPUTS/Case-Sensitive.c -l 3 23# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/Case-Sensitive.c -l 3 24# CHECK: 0 locations. 25 26breakpoint set -f case-sensitive.c -p REGEX-THIS 27# CHECK-LABEL: breakpoint set -f case-sensitive.c -p REGEX-THIS 28# CHECK: At least one location. 29 30breakpoint set -f %p/Inputs/case-sensitive.c -p REGEX-THIS 31# CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -p REGEX-THIS 32# CHECK: At least one location. 33 34breakpoint set -f %p/INPUTS/case-sensitive.c -p REGEX-THIS 35# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -p REGEX-THIS 36# CHECK: 0 locations. 37 38breakpoint set -f Case-Sensitive.c -p REGEX-THIS 39# CHECK-LABEL: breakpoint set -f Case-Sensitive.c -p REGEX-THIS 40# CHECK: 0 locations. 41 42breakpoint set -f %p/INPUTS/Case-Sensitive.c -p REGEX-THIS 43# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/Case-Sensitive.c -p REGEX-THIS 44# CHECK: 0 locations. 45 46 47