mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 15:28:53 -04:00

Summary: This patch supplies basic infrastructure for LLDB to use LIT, and ports a few basic test cases from the LLDB test suite into LIT. With this patch the LLDB lit system is not capable or intended to fully replace the existing LLDB test suite, but this first patch enables people to write lit tests for LLDB. The lit substitution for %cc and %cxx default to the host compiler unless the CMake option LLDB_TEST_CLANG is On, in which case the in-tree clang will be used. The target check-lldb-lit will run all lit tests including the lit-based executor for the unit tests. Alternatively there is a target generated for each subdirectory under the lit directory, so check-lldb-unit and check-lldb-expr will run just the tests under their respective directories. The ported tests are not removed from the existing suite, and should not be until such a time when the lit runner is mature and in use by bots and workflows. Reviewers: zturner, labath, jingham, tfiala Subscribers: beanz, mgorny, lldb-commits Differential Revision: https://reviews.llvm.org/D24591 llvm-svn: 281651
21 lines
500 B
Plaintext
21 lines
500 B
Plaintext
# XFAIL: windows
|
|
# -> llvm.org/pr24489
|
|
|
|
# RUN: %cxx %p/Inputs/call-function.cpp -g -o %t && %lldb -b -s %s -- %t | FileCheck %s
|
|
|
|
breakpoint set --file call-function.cpp --line 52
|
|
run
|
|
expression fib(5)
|
|
# CHECK: $0 = 5
|
|
expression add(4,8)
|
|
# CHECK: $1 = 12
|
|
|
|
expression add(add(5,2),add(3,4))
|
|
# CHECK: $2 = 14
|
|
expression add(add(5,2),fib(5))
|
|
# CHECK: $3 = 12
|
|
expression stringCompare((const char*) "Hello world")
|
|
# CHECK: $4 = true
|
|
expression stringCompare((const char*) "Hellworld")
|
|
# CHECK: $5 = false
|