[libcxx-commits] [libcxx] WIP - [libc++][debugging] P2546R5: Debugging support & P2810R4: `is_debugger_present` `is_replaceable` (PR #81447)
Hristo Hristov via libcxx-commits
libcxx-commits at lists.llvm.org
Fri May 10 03:43:57 PDT 2024
================
@@ -0,0 +1,33 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20, c++23
+// UNSUPPORTED: libcpp-has-no-incomplete-debugging
+// REQUIRES: host-has-dbx
+
+// RUN: %{cxx} %{flags} %s -o %t.exe %{compile_flags} -g %{link_flags}
+// RUN: "%{dbx}" %t.exe -c %S/breakpoint__dbx.cmd \
+// RUN: | grep -qEf %S/breakpoint__dbx.grep
----------------
H-G-Hristov wrote:
I added `grep` based test for `breakpoint()`. Let's see what happens.
https://github.com/llvm/llvm-project/pull/81447
More information about the libcxx-commits
mailing list