Skip to content

Commit a78d361

Browse files
authored
Merge pull request #1459 from google/enable-some-tests
Un-ignore some tests.
2 parents da866cc + 17b540b commit a78d361

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

integration-tests/tests/integration_test.rs

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3287,7 +3287,6 @@ fn test_conflicting_usings_with_self_declaration1() {
32873287
}
32883288

32893289
#[test]
3290-
#[ignore] // https://github.com/google/autocxx/issues/106
32913290
fn test_string_templated_typedef() {
32923291
let hdr = indoc! {"
32933292
#include <string>
@@ -10015,7 +10014,6 @@ fn test_class_having_private_method() {
1001510014
}
1001610015

1001710016
#[test]
10018-
#[ignore] // https://github.com/google/autocxx/issues/787
1001910017
fn test_chrono_problem() {
1002010018
let hdr = indoc! {"
1002110019
#include <chrono>
@@ -12008,17 +12006,6 @@ fn test_issue_1081() {
1200812006
}
1200912007

1201012008
#[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.
1202212009
fn test_issue_1125() {
1202312010
let hdr = indoc! {"
1202412011
namespace {
@@ -12440,7 +12427,8 @@ fn test_using_string_method() {
1244012427
}
1244112428

1244212429
#[test]
12443-
#[ignore] // https://github.com/google/autocxx/issues/1382
12430+
#[cfg_attr(skip_windows_gnu_failing_tests, ignore)]
12431+
#[cfg_attr(skip_windows_msvc_failing_tests, ignore)]
1244412432
fn test_override_typedef_fn() {
1244512433
let hdr = indoc! {"
1244612434
#include <map>

0 commit comments

Comments
 (0)