Skip to content

Commit 8ea54f3

Browse files
committed
Un-ignore some tests.
These tests now appear to be passing, at least on some configurations, since the major changes in #1456.
1 parent dd3e248 commit 8ea54f3

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

integration-tests/tests/integration_test.rs

-17
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,6 @@ fn test_negative_take_as_pod_with_move_constructor() {
502502
run_test_expect_fail(cxx, hdr, rs, &["take_bob"], &["Bob"]);
503503
}
504504

505-
#[ignore] // https://github.com/google/autocxx/issues/1252
506505
#[test]
507506
fn test_take_as_pod_with_is_relocatable() {
508507
let cxx = indoc! {"
@@ -3287,7 +3286,6 @@ fn test_conflicting_usings_with_self_declaration1() {
32873286
}
32883287

32893288
#[test]
3290-
#[ignore] // https://github.com/google/autocxx/issues/106
32913289
fn test_string_templated_typedef() {
32923290
let hdr = indoc! {"
32933291
#include <string>
@@ -5134,7 +5132,6 @@ fn test_type_aliased_anonymous_nested_struct_ignored() {
51345132
run_test("", hdr, rs, &["test::Outer_Struct"], &[]);
51355133
}
51365134

5137-
#[ignore] // https://github.com/google/autocxx/issues/1251
51385135
#[test]
51395136
fn test_double_underscores_ignored() {
51405137
let hdr = indoc! {"
@@ -10015,7 +10012,6 @@ fn test_class_having_private_method() {
1001510012
}
1001610013

1001710014
#[test]
10018-
#[ignore] // https://github.com/google/autocxx/issues/787
1001910015
fn test_chrono_problem() {
1002010016
let hdr = indoc! {"
1002110017
#include <chrono>
@@ -12008,17 +12004,6 @@ fn test_issue_1081() {
1200812004
}
1200912005

1201012006
#[test]
12011-
#[ignore] // This test passes under all normal builds. However
12012-
// it triggers a stack use-after-return in older versions of
12013-
// libclang which is only detected under ASAN (obviously it
12014-
// sometimes causes crashes the rest of the time).
12015-
// This UaR does not occur when the same code is processed
12016-
// with a HEAD version of clang itself as of June 2022. This
12017-
// may mean that the UaR has been fixed in later versions of
12018-
// the clang code, or that it only occurs when the code is used
12019-
// in a libclang context (not a plain clang compilation context).
12020-
// If the problem recurs, we should work out which of these is
12021-
// the case.
1202212007
fn test_issue_1125() {
1202312008
let hdr = indoc! {"
1202412009
namespace {
@@ -12296,7 +12281,6 @@ fn test_issue_1229() {
1229612281
}
1229712282

1229812283
#[test]
12299-
#[ignore] // https://github.com/google/autocxx/issues/1265
1230012284
fn test_issue_1265() {
1230112285
let hdr = indoc! {"
1230212286
#include <string>
@@ -12440,7 +12424,6 @@ fn test_using_string_method() {
1244012424
}
1244112425

1244212426
#[test]
12443-
#[ignore] // https://github.com/google/autocxx/issues/1382
1244412427
fn test_override_typedef_fn() {
1244512428
let hdr = indoc! {"
1244612429
#include <map>

0 commit comments

Comments
 (0)