mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
355 B
Swift
19 lines
355 B
Swift
// RUN: %target-build-swift -module-name a %s -o %t.out
|
|
// RUN: %target-codesign %t.out
|
|
// RUN: %target-run %t.out
|
|
// REQUIRES: executable_test
|
|
|
|
// This test isn't temporarily disabled; it actually should terminate with a
|
|
// non-zero exit code.
|
|
//
|
|
// XFAIL: *
|
|
|
|
//
|
|
// Check that terminating with abort() counts as test failure.
|
|
//
|
|
|
|
import Darwin
|
|
|
|
abort()
|
|
|