Skip to content

Commit b19df2c

Browse files
Merge pull request #8768 from apple/revert-8749-disable-lldb-repl-tests-aarch64
Revert "[6.0][Tests][REPL] Disable some REPL tests on aarch64 Linux."
2 parents bf8bbb9 + 533e405 commit b19df2c

17 files changed

+0
-51
lines changed

lldb/test/Shell/SwiftREPL/Class.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that we can define and use a basic class.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
class Bar {

lldb/test/Shell/SwiftREPL/ClosureScope.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that we can define and use variables in closure scopes in the REPL
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
print([1, 2, 3].map { x in x + 1 })

lldb/test/Shell/SwiftREPL/Dict.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that the dictionary data formatter works in the REPL.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s --check-prefix=DICT
85

96
// The dictionary order isn't deterministic, so print the dictionary

lldb/test/Shell/SwiftREPL/ErrorReturn.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
// Test that we can handle errors.
44
// REQUIRES: swift
55

6-
// rdar://127673408
7-
// UNSUPPORTED: system-linux && target-aarch64
8-
96
// RUN: %lldb --repl < %s | FileCheck %s
107

118
enum VagueProblem: Error { case SomethingWentWrong }

lldb/test/Shell/SwiftREPL/ExclusivityREPL.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Runtime checks for exclusive access should be enabled in the REPL.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s 2>&1 | FileCheck %s
85
// CHECK-DAG: modification requires exclusive access
96
// CHECK-DAG: Execution interrupted

lldb/test/Shell/SwiftREPL/ExistentialTypes.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
// Test that the we can resolve the dynamic type of existential correctly.
33
// REQUIRES: swift
44

5-
// rdar://127673408
6-
// UNSUPPORTED: system-linux && target-aarch64
7-
85
// RUN: %lldb --repl < %s | FileCheck %s
96

107
protocol A {}

lldb/test/Shell/SwiftREPL/GenericTypealias.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that generic typealiases are reconstructed correctly.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
class Tinky<T> {

lldb/test/Shell/SwiftREPL/Generics.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that generics work in the REPL.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
class Foo<T,U> {

lldb/test/Shell/SwiftREPL/LookupAfterImport.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
// rdar://64040436
33
// REQUIRES: swift
44

5-
// rdar://127673408
6-
// UNSUPPORTED: system-linux && target-aarch64
7-
85
// RUN: rm -rf %t
96
// RUN: mkdir %t
107
// RUN: %target-swiftc -emit-library %S/Inputs/A.swift -module-name A -emit-module-path %t/A.swiftmodule -o %t/libA%target-shared-library-suffix

lldb/test/Shell/SwiftREPL/MetatypeRepl.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// REQUIRES: swift
22

3-
// rdar://127673408
4-
// UNSUPPORTED: system-linux && target-aarch64
5-
63
// RUN: %lldb --repl < %s | FileCheck %s
74

85
let x = [Double.self]

lldb/test/Shell/SwiftREPL/OpenClass.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %lldb --repl < %s 2>&1 | FileCheck %s
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
class Foo {
85
// Don't make any of these 'open'.
96
typealias X = Int

lldb/test/Shell/SwiftREPL/Optional.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %lldb --repl < %s | FileCheck %s
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
enum Patatino {
85
case first
96
case second

lldb/test/Shell/SwiftREPL/OptionalUnowned.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// REQUIRES: swift
22

3-
// rdar://127673408
4-
// UNSUPPORTED: system-linux && target-aarch64
5-
63
// RUN: %lldb --repl < %s | FileCheck %s
74

85
class C

lldb/test/Shell/SwiftREPL/RecursiveClass.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that recursive class instances work in the REPL.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
class Foo {

lldb/test/Shell/SwiftREPL/SimpleExpressions.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
// Note: All of this should work on all supported platforms.
33
// REQUIRES: swift
44

5-
// rdar://127673408
6-
// UNSUPPORTED: system-linux && target-aarch64
7-
85
// RUN: %lldb --repl < %s | FileCheck %s
96

107
type(of: 1)

lldb/test/Shell/SwiftREPL/Subclassing.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// Test that subclassing works in the repl.
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
// RUN: %lldb --repl < %s | FileCheck %s
85

96
class A {init(a: Int) {}}

lldb/test/Shell/SwiftREPL/enum-singlecase.test

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
// RUN: %lldb --repl < %s 2>&1 | FileCheck %s
22
// REQUIRES: swift
33

4-
// rdar://127673408
5-
// UNSUPPORTED: system-linux && target-aarch64
6-
74
enum Foo: String {
85
case patatino
96
}

0 commit comments

Comments
 (0)