James Henderson 1364750dad [RFC][debuginfo-test] Rename debug-info lit tests for general purposes
Discussion thread:
https://lists.llvm.org/pipermail/llvm-dev/2021-January/148048.html

Move debuginfo-test into a subdirectory of a new top-level directory,
called cross-project-tests. The new name replaces "debuginfo-test" as an
LLVM project enabled via LLVM_ENABLE_PROJECTS.

Differential Revision: https://reviews.llvm.org/D95339

Reviewed by: aprantl
2021-06-28 11:31:40 +01:00

25 lines
493 B
C++

// Purpose:
// Ensure that the debug information for a global variable includes
// namespace information.
// REQUIRES: lldb
// UNSUPPORTED: system-windows
// RUN: %dexter --fail-lt 1.0 -w \
// RUN: --builder 'clang' --debugger 'lldb' \
// RUN: --cflags "-g -O0" -v -- %s
#include <stdio.h>
namespace monkey {
const int ape = 32;
}
int main() {
printf("hello %d\n", monkey::ape); // DexLabel('main')
return 0;
}
// DexExpectWatchValue('monkey::ape', 32, on_line=ref('main'))