Skip to content

Commit 37a20cc

Browse files
XFAIL dexter tests that broke greendragon.
The patch in https://reviews.llvm.org/D151465 broke greendragon, because it is hardcoding the use of libstdc++ which is not available on darwin. XFAILing these tests till they can be fixed.
1 parent 42da84f commit 37a20cc

38 files changed

+38
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
//
45
// RUN: %clang -std=gnu++11 -O0 -g -lstdc++ %s -o %t
56
// RUN: %dexter --fail-lt 1.0 -w \

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
//
45
// RUN: %clang -std=gnu++11 -O0 -glldb %s -o %t
56
// RUN: %dexter --fail-lt 1.0 -w \

cross-project-tests/debuginfo-tests/dexter-tests/dbg-arg.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
//
45
// This test case checks debug info during register moves for an argument.
56
// RUN: %clang -std=gnu11 -m64 -mllvm -fast-isel=false -g %s -o %t

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

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

cross-project-tests/debuginfo-tests/dexter-tests/memvars/ctrl-flow.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
// RUN: %clang -std=gnu11 -O2 -glldb %s -o %t
45
// RUN: %dexter --fail-lt 1.0 -w --debugger lldb --binary %t -- %s
56

cross-project-tests/debuginfo-tests/dexter-tests/memvars/inlining.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
// RUN: %clang -std=gnu11 -O2 -glldb %s -o %t
45
// RUN: %dexter --fail-lt 1.0 -w --debugger lldb --binary %t -- %s
56
//

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
// REQUIRES: lldb
66
// UNSUPPORTED: system-windows
7+
// XFAIL: system-darwin
78

89
// RUN: %clang -g -O0 %s -o %t
910
// RUN: %dexter --fail-lt 1.0 -w \

cross-project-tests/debuginfo-tests/dexter-tests/stack-var.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// REQUIRES: lldb
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
//
45
// RUN: %clang -std=gnu11 -O -glldb %s -o %t
56
// RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'lldb' -- %s

cross-project-tests/debuginfo-tests/dexter-tests/vla.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// This test case verifies the debug location for variable-length arrays.
22
// REQUIRES: lldb
33
// UNSUPPORTED: system-windows
4+
// XFAIL: system-darwin
45
//
56
// RUN: %clang -std=gnu11 -O0 -glldb %s -o %t
67
// RUN: %dexter --fail-lt 1.0 -w --binary %t --debugger 'lldb' -- %s

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// The dbgeng driver doesn't support \DexCommandLine yet.
22
// UNSUPPORTED: system-windows
3+
// XFAIL: system-darwin
34
//
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Test that a \DexDeclareAddress value can have its value defined after
33
// the first reference to that value.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: address_after_ref.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// expression after the target line has been stepped on a given number of
55
// times.
66
//
7+
// XFAIL: system-darwin
78
// RUN: %dexter_regression_test_build %s -o %t
89
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
910
// CHECK: address_hit_count.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +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+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: expression_address.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Test that a \DexDeclareAddress value can be used to compare two equal
33
// pointer variables.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: identical_address.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Test that multiple \DexDeclareAddress references that point to different
33
// addresses can be used within a single \DexExpectWatchValue.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: multiple_address.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +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+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: offset_address.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +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+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: self_comparison.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// condition (x == 5) is satisfied.
77
// Tests using the default controller (no \DexLimitSteps).
88
//
9+
// XFAIL: system-darwin
910
// RUN: %dexter_regression_test_build %s -o %t
1011
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1112
// CHECK: default_conditional.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
// given number of times.
88
// Tests using the default controller (no \DexLimitSteps).
99
//
10+
// XFAIL: system-darwin
1011
// RUN: %dexter_regression_test_build %s -o %t
1112
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
1213
// CHECK: default_conditional_hit_count.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// specific number of times.
55
// Tests using the default controller (no \DexLimitSteps).
66
//
7+
// XFAIL: system-darwin
78
// RUN: %dexter_regression_test_build %s -o %t
89
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
910
// CHECK: default_hit_count.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
// is stepped on.
55
// Tests using the default controller (no \DexLimitSteps).
66
//
7+
// XFAIL: system-darwin
78
// RUN: %dexter_regression_test_build %s -o %t
89
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
910
// CHECK: default_simple.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77
// The dbgeng driver doesn't support \DexLimitSteps yet.
88
// UNSUPPORTED: system-windows
9+
// XFAIL: system-darwin
910
//
1011
// RUN: %dexter_regression_test_build %s -o %t
1112
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88
// The dbgeng driver doesn't support \DexLimitSteps yet.
99
// UNSUPPORTED: system-windows
10+
// XFAIL: system-darwin
1011
//
1112
// RUN: %dexter_regression_test_build %s -o %t
1213
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
//
77
// The dbgeng driver doesn't support \DexLimitSteps yet.
88
// UNSUPPORTED: system-windows
9+
// XFAIL: system-darwin
910
//
1011
// RUN: %dexter_regression_test_build %s -o %t
1112
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Test that \DexLimitSteps keyword argument hit_count correctly limits
33
// the number of times the command can trigger.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: hit_count.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Check number of step lines are correctly reported in json output.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t --verbose -- %s | FileCheck %s
67
// CHECK: limit_steps_check_json_step_count.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Check the DexLimit steps only gathers step info for 2 iterations of a
33
// for loop.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: limit_steps_expect_loop.cpp:

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Ensure that limited stepping breaks for all expected values.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
67
// CHECK: limit_steps_expect_value.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// doesn't exist. This can happen due to optimisations or label is on an
44
// empty line.
55
//
6+
// XFAIL: system-darwin
67
// RUN: %dexter_regression_test_build %s -o %t
78
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
89
// CHECK: limit_steps_line_mismatch.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Ensure that multiple overlapping \DexLimitSteps ranges do not interfere.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
67
// CHECK: limit_steps_overlapping_ranges.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Test that LimitStep commands can exist on the same from line.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
67
// CHECK: limit_steps_same_line_conditional.cpp

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Test that \DexLimitSteps can be used without a condition (i.e. the
33
// breakpoint range is set any time from_line is stepped on).
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: unconditional.cpp

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/address_printing.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// The dbgeng driver doesn't support \DexLimitSteps yet.
1212
// UNSUPPORTED: system-windows
1313
//
14+
// XFAIL: system-darwin
1415
// RUN: %dexter_regression_test_build %s -o %t
1516
// RUN: not %dexter_regression_test_run --binary %t -v -- %s | FileCheck %s
1617

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_another_line.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// Check that the optional keyword argument 'on_line' makes a \DexLabel label
33
// that line instead of the line the command is found on.
44
//
5+
// XFAIL: system-darwin
56
// RUN: %dexter_regression_test_build %s -o %t
67
// RUN: %dexter_regression_test_run --binary %t -- %s | FileCheck %s
78
// CHECK: label_another_line.cpp: (1.0000)

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/label_offset.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Check that we can use label-relative line numbers.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t -v -- %s | FileCheck %s
67
//

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// The dbgeng driver doesn't support --target-run-args yet.
22
// UNSUPPORTED: system-windows
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t --target-run-args "a b 'c d'" -- %s | FileCheck %s
67
// CHECK: target_run_args.c:

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/test/target_run_args_with_command.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// The dbgeng driver doesn't support --target-run-args yet.
22
// UNSUPPORTED: system-windows
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t --target-run-args "a b 'c d'" -- %s | FileCheck %s
67
// CHECK: target_run_args_with_command.c:

cross-project-tests/debuginfo-tests/dexter/feature_tests/subtools/view.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Purpose:
22
// Check the `view` subtool works with typical inputs.
33
//
4+
// XFAIL: system-darwin
45
// RUN: %dexter_regression_test_build %s -o %t
56
// RUN: %dexter_regression_test_run --binary %t --results %t.results -- %s
67
//

0 commit comments

Comments
 (0)