Summary: This implements the gcc builder in build.py script to allow it to compile host executables when running on a non-windows host. Where it made sense, I tried to share code with the msvc builder by moving stuff to the base class. Reviewers: zturner Subscribers: mehdi_amini, dexonsmith, lldb-commits Differential Revision: https://reviews.llvm.org/D55430 llvm-svn: 348918
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
# REQUIRES: nowindows
|
|
#
|
|
# RUN: %build %p/Inputs/case-sensitive.c --nodefaultlib -o %t
|
|
# RUN: lldb-test breakpoints %t %s | FileCheck %s
|
|
|
|
breakpoint set -f case-sensitive.c -l 3
|
|
# CHECK-LABEL: breakpoint set -f case-sensitive.c -l 3
|
|
# CHECK: At least one location.
|
|
|
|
breakpoint set -f %p/Inputs/case-sensitive.c -l 3
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -l 3
|
|
# CHECK: At least one location.
|
|
|
|
breakpoint set -f %p/INPUTS/case-sensitive.c -l 3
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -l 3
|
|
# CHECK: 0 locations.
|
|
|
|
breakpoint set -f Case-Sensitive.c -l 3
|
|
# CHECK-LABEL: breakpoint set -f Case-Sensitive.c -l 3
|
|
# CHECK: 0 locations.
|
|
|
|
breakpoint set -f %p/INPUTS/Case-Sensitive.c -l 3
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/Case-Sensitive.c -l 3
|
|
# CHECK: 0 locations.
|
|
|
|
breakpoint set -f case-sensitive.c -p REGEX-THIS
|
|
# CHECK-LABEL: breakpoint set -f case-sensitive.c -p REGEX-THIS
|
|
# CHECK: At least one location.
|
|
|
|
breakpoint set -f %p/Inputs/case-sensitive.c -p REGEX-THIS
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/Inputs/case-sensitive.c -p REGEX-THIS
|
|
# CHECK: At least one location.
|
|
|
|
breakpoint set -f %p/INPUTS/case-sensitive.c -p REGEX-THIS
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/case-sensitive.c -p REGEX-THIS
|
|
# CHECK: 0 locations.
|
|
|
|
breakpoint set -f Case-Sensitive.c -p REGEX-THIS
|
|
# CHECK-LABEL: breakpoint set -f Case-Sensitive.c -p REGEX-THIS
|
|
# CHECK: 0 locations.
|
|
|
|
breakpoint set -f %p/INPUTS/Case-Sensitive.c -p REGEX-THIS
|
|
# CHECK-LABEL: breakpoint set -f {{.*}}/INPUTS/Case-Sensitive.c -p REGEX-THIS
|
|
# CHECK: 0 locations.
|
|
|
|
|