Commit 22f01cd4 authored by Jake Egan's avatar Jake Egan
Browse files

[AIX][ZOS] Disable LIT tests on AIX and z/OS due to lack of Objective-C support

AIX and z/OS lack Objective-C support, so mark these tests as unsupported for AIX and z/OS.

Reviewed By: jsji

Differential Revision: https://reviews.llvm.org/D109060
parent 73e5b9ea
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
if any(target in config.target_triple for target in ('aix', 'zos')):
  config.unsupported = True
+2 −0
Original line number Diff line number Diff line
if any(target in config.target_triple for target in ('aix', 'zos')):
  config.unsupported = True
+1 −0
Original line number Diff line number Diff line
// UNSUPPORTED: -zos, -aix
// RUN: clang-import-test -x objective-c++ -import %S/Inputs/S1.m --import %S/Inputs/S2.m --import %S/Inputs/S3.m -expression %s
void expr() {
  MyClass *c = [MyClass fromInteger:3];
+1 −0
Original line number Diff line number Diff line
// UNSUPPORTED: -zos, -aix
// RUN: clang-import-test -x objective-c -objc-arc -import %S/Inputs/cleanup-objects.m -dump-ast -expression %s | FileCheck %s

// CHECK: FunctionDecl {{.*}} getObj '
+1 −0
Original line number Diff line number Diff line
// UNSUPPORTED: -zos, -aix
// RUN: clang-import-test -dump-ast -x objective-c++ -import %S/Inputs/F.m -expression %s | FileCheck %s

// CHECK: ObjCAutoreleasePoolStmt
Loading