Skip to content

Commit b8fc288

Browse files
authored
[Dexter] Replace clang with clang++ in various cross project tests (#65987)
This patch replaces invocations of clang with clang++ for a set of c++ files in the dexter cross-project tests. As a small additional change, this patch removes -lstdc++ from a test that did not appear to require it.
1 parent 0080404 commit b8fc288

File tree

79 files changed

+118
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+118
-90
lines changed

cross-project-tests/debuginfo-tests/dexter-tests/aggregate-indirect-arg.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
33
//
4-
// RUN: %clang -std=gnu++11 -O0 -g -lstdc++ %s -o %t
4+
// RUN: %clang++ -std=gnu++11 -O0 -g %s -o %t
55
// RUN: %dexter --fail-lt 1.0 -w \
66
// RUN: --binary %t --debugger 'lldb' -- %s
77
// Radar 8945514

cross-project-tests/debuginfo-tests/dexter-tests/asan-deque.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// lldb-8, even outside of dexter, will sometimes trigger an asan fault in
99
// the debugged process and generally freak out.
1010

11-
// RUN: %clang -std=gnu++11 -O1 -glldb -fsanitize=address -arch x86_64 %s -o %t
11+
// RUN: %clang++ -std=gnu++11 -O1 -glldb -fsanitize=address -arch x86_64 %s -o %t
1212
// RUN: %dexter --fail-lt 1.0 -w \
1313
// RUN: --binary %t --debugger 'lldb' -- %s
1414
#include <deque>

cross-project-tests/debuginfo-tests/dexter-tests/ctor.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
33
//
4-
// RUN: %clang -std=gnu++11 -O0 -glldb %s -o %t
4+
// RUN: %clang++ -std=gnu++11 -O0 -glldb %s -o %t
55
// RUN: %dexter --fail-lt 1.0 -w \
66
// RUN: --binary %t --debugger 'lldb' -- %s
77

cross-project-tests/debuginfo-tests/dexter-tests/deferred_globals.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// REQUIRES: lldb
66
// UNSUPPORTED: system-windows
7-
// RUN: %clang -std=gnu++11 -O0 -g %s -o %t
7+
// RUN: %clang++ -std=gnu++11 -O0 -g %s -o %t
88
// RUN: %dexter --fail-lt 1.0 -w \
99
// RUN: --binary %t --debugger 'lldb' -v -- %s
1010

cross-project-tests/debuginfo-tests/dexter-tests/namespace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// REQUIRES: lldb
66
// UNSUPPORTED: system-windows
77

8-
// RUN: %clang -g -O0 %s -o %t
8+
// RUN: %clang++ -g -O0 %s -o %t
99
// RUN: %dexter --fail-lt 1.0 -w \
1010
// RUN: --binary %t --debugger 'lldb' -v -- %s
1111

cross-project-tests/debuginfo-tests/dexter-tests/nrvo-string.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
// Zorg configures the ASAN stage2 bots to not build the asan
88
// compiler-rt. Only run this test on non-asanified configurations.
99
//
10-
// RUN: %clang -std=gnu++11 -O0 -glldb -fno-exceptions %s -o %t
10+
// RUN: %clang++ -std=gnu++11 -O0 -glldb -fno-exceptions %s -o %t
1111
// RUN: %dexter --fail-lt 1.0 -w \
1212
// RUN: --binary %t --debugger 'lldb' -- %s
1313
//
14-
// RUN: %clang -std=gnu++11 -O1 -glldb -fno-exceptions %s -o %t
14+
// RUN: %clang++ -std=gnu++11 -O1 -glldb -fno-exceptions %s -o %t
1515
// RUN: %dexter --fail-lt 1.0 -w \
1616
// RUN: --binary %t --debugger 'lldb' -- %s
1717
//

cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// RUN: %clang -std=gnu++11 -O2 -ffast-math -g %s -o %t
1+
// RUN: %clang++ -std=gnu++11 -O2 -ffast-math -g %s -o %t
22
// RUN: %dexter --fail-lt 1.0 -w \
33
// RUN: --binary %t --debugger 'lldb' -- %s
4-
// RUN: %clang -std=gnu++11 -O0 -ffast-math -g %s -o %t
4+
// RUN: %clang++ -std=gnu++11 -O0 -ffast-math -g %s -o %t
55
// RUN: %dexter --fail-lt 1.0 -w \
66
// RUN: --binary %t --debugger 'lldb' -- %s
77

cross-project-tests/debuginfo-tests/dexter-tests/optnone-loops.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-windows
66
// UNSUPPORTED: system-darwin
77

8-
// RUN: %clang -std=gnu++11 -O2 -g %s -o %t
8+
// RUN: %clang++ -std=gnu++11 -O2 -g %s -o %t
99
// RUN: %dexter --fail-lt 1.0 -w \
1010
// RUN: --binary %t --debugger 'lldb' -- %s
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/dex_declare_file.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: dex_declare_file.cpp
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_program_state.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// UNSUPPORTED: system-darwin
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: expect_program_state.cpp:
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_kinds.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// UNSUPPORTED: system-darwin
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: expect_step_kinds.cpp:
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_step_order.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// UNSUPPORTED: system-darwin
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: expect_step_order.cpp:
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_type.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// TODO: Reduce this test's coverage and be more specific about
1010
// expected behaviour.
1111
//
12-
// RUN: %dexter_regression_test_build %s -o %t
12+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1313
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1414
// CHECK: expect_watch_type.cpp:
1515

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/expect_watch_value.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: expect_watch_value.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_out_range.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// UNSUPPORTED: system-darwin
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: float_range_out_range.cpp:
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/float_range_zero_nonmatch.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// UNSUPPORTED: system-darwin
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: float_range_zero_nonmatch.cpp:
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/missing_dex_address.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// The dbgeng driver doesn't support \DexDeclareAddress yet.
66
// UNSUPPORTED: system-windows
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: missing_dex_address.cpp
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: unreachable.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_line_range.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: unreachable_line_range.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/penalty/unreachable_on_line.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: not %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: unreachable_on_line.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/command_line.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// The dbgeng driver doesn't support \DexCommandLine yet.
22
// UNSUPPORTED: system-windows
33
//
4-
// RUN: %dexter_regression_test_build %s -o %t
4+
// RUN: %dexter_regression_test_c_build %s -o %t
55
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
66
// CHECK: command_line.c:
77

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_after_ref.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that a \DexDeclareAddress value can have its value defined after
33
// the first reference to that value.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: address_after_ref.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/address_hit_count.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// expression after the target line has been stepped on a given number of
55
// times.
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: address_hit_count.cpp
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/expression_address.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that a \DexDeclareAddress value can be used to compare the
33
// addresses of two local variables that refer to the same address.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: expression_address.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/identical_address.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that a \DexDeclareAddress value can be used to compare two equal
33
// pointer variables.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: identical_address.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/multiple_address.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that multiple \DexDeclareAddress references that point to different
33
// addresses can be used within a single \DexExpectWatchValue.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: multiple_address.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/offset_address.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that a \DexDeclareAddress value can be used to compare two pointer
33
// variables that have a fixed offset between them.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: offset_address.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_address/self_comparison.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Test that a \DexDeclareAddress value can be used to check the change in
33
// value of a variable over time, relative to its initial value.
44
//
5-
// RUN: %dexter_regression_test_build %s -o %t
5+
// RUN: %dexter_regression_test_cxx_build %s -o %t
66
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
77
// CHECK: self_comparison.cpp
88

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_declare_file/dex_and_source/test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// UNSUPPORTED: system-darwin
77
//
88
//
9-
// RUN: %dexter_regression_test_build %s -o %t
9+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1010
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1111
// CHECK: dex_and_source
1212

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// condition (x == 5) is satisfied.
77
// Tests using the default controller (no \DexLimitSteps).
88
//
9-
// RUN: %dexter_regression_test_build %s -o %t
9+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1010
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1111
// CHECK: default_conditional.cpp
1212

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_conditional_hit_count.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// given number of times.
88
// Tests using the default controller (no \DexLimitSteps).
99
//
10-
// RUN: %dexter_regression_test_build %s -o %t
10+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1111
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1212
// CHECK: default_conditional_hit_count.cpp
1313

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_hit_count.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// specific number of times.
55
// Tests using the default controller (no \DexLimitSteps).
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: default_hit_count.cpp
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/default_simple.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// is stepped on.
55
// Tests using the default controller (no \DexLimitSteps).
66
//
7-
// RUN: %dexter_regression_test_build %s -o %t
7+
// RUN: %dexter_regression_test_cxx_build %s -o %t
88
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
99
// CHECK: default_simple.cpp
1010

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// The dbgeng driver doesn't support \DexLimitSteps yet.
88
// UNSUPPORTED: system-windows
99
//
10-
// RUN: %dexter_regression_test_build %s -o %t
10+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1111
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1212
// CHECK: limit_steps_conditional.cpp
1313

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_conditional_hit_count.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// The dbgeng driver doesn't support \DexLimitSteps yet.
99
// UNSUPPORTED: system-windows
1010
//
11-
// RUN: %dexter_regression_test_build %s -o %t
11+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1212
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1313
// CHECK: limit_steps_conditional_hit_count.cpp
1414

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_hit_count.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// The dbgeng driver doesn't support \DexLimitSteps yet.
88
// UNSUPPORTED: system-windows
99
//
10-
// RUN: %dexter_regression_test_build %s -o %t
10+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1111
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1212
// CHECK: limit_steps_hit_count.cpp
1313

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/dex_finish_test/limit_steps_simple.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// The dbgeng driver doesn't support \DexLimitSteps yet.
88
// UNSUPPORTED: system-windows, system-darwin
99
//
10-
// RUN: %dexter_regression_test_build %s -o %t
10+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1111
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1212
// CHECK: limit_steps_simple.cpp
1313

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_program_state.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// UNSUPPORTED: system-darwin
66
//
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: expect_program_state.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/direction.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// TODO: The dbgeng debugger does not support column step reporting at present.
1111
// XFAIL: system-windows
1212
//
13-
// RUN: %dexter_regression_test_build %s -o %t
13+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1414
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1515
// CHECK: direction.cpp:
1616

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// UNSUPPORTED: system-darwin
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: func.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/func_external.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// This fails right now on my linux and windows machine, needs examining as to
99
// why.
1010
//
11-
// RUN: %dexter_regression_test_build %s -o %t
11+
// RUN: %dexter_regression_test_cxx_build %s -o %t
1212
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1313
// CHECK: func_external.cpp:
1414

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/recursive.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// UNSUPPORTED: system-darwin
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: recursive.cpp:
1111

cross-project-tests/debuginfo-tests/dexter/feature_tests/commands/perfect/expect_step_kind/small_loop.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// UNSUPPORTED: system-darwin
77
//
8-
// RUN: %dexter_regression_test_build %s -o %t
8+
// RUN: %dexter_regression_test_cxx_build %s -o %t
99
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1010
// CHECK: small_loop.cpp:
1111

0 commit comments

Comments
 (0)