Files
swift-mirror/validation-test/stdlib/Concatenate.swift
Dave Abrahams ed8c302a93 [stdlib] Move tests that challenge a debug compiler
...into the validation suite.  This is the wrong solution but at least
the bots will continue to run all the tests and we won't regress.

Swift SVN r24934
2015-02-04 01:53:14 +00:00

59 lines
1.9 KiB
Swift

//===--- Concatenate.swift - Tests for lazy/eager concatenate -------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
// RUN: %target-run-stdlib-swift
// XFAIL: linux
import Swift
import StdlibUnittest
var ConcatenateTests = TestSuite("ConcatenateTests")
// Help the type checker (<rdar://problem/17897413> Slow type deduction)
typealias X = (Range<Int>, ContiguousArray<Range<Int>>)
let samples: ContiguousArray<X> = [
(0..<8, [ 1..<1, 0..<5, 7..<7, 5..<7, 7..<8 ] as ContiguousArray<Range<Int>>),
(0..<8, [ 0..<5, 7..<7, 5..<7, 7..<8 ] as ContiguousArray<Range<Int>>),
(0..<8, [ 1..<1, 0..<5, 7..<7, 5..<7, 7..<8, 11..<11 ] as ContiguousArray<Range<Int>>),
(0..<8, [ 0..<5, 7..<7, 5..<7, 7..<8, 11..<11 ] as ContiguousArray<Range<Int>>),
(0..<0, [ 11..<11 ] as ContiguousArray<Range<Int>>),
(0..<0, [ 3..<3, 11..<11 ] as ContiguousArray<Range<Int>>),
(0..<0, [] as ContiguousArray<Range<Int>>),
]
let expected = ContiguousArray(0..<8)
for (expected, source) in samples {
ConcatenateTests.test("forward-\(source)") {
checkCollection(
expected,
_lazyConcatenate(source),
SourceLocStack().withCurrentLoc())
}
ConcatenateTests.test("reverse-\(source)") {
checkCollection(
ContiguousArray(lazy(expected).reverse()),
_lazyConcatenate(source).reverse(),
SourceLocStack().withCurrentLoc())
}
ConcatenateTests.test("sequence-\(source)") {
checkSequence(
ContiguousArray(expected),
_lazyConcatenate(SequenceOf(source)),
SourceLocStack().withCurrentLoc())
}
}
runAllTests()