1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
// RUN: %empty-directory(%t)
// RUN: %target-build-swift %s -o %t/a.out_Debug -Onone
// RUN: %target-build-swift %s -o %t/a.out_Release -O
// RUN: %target-codesign %t/a.out_Debug
// RUN: %target-codesign %t/a.out_Release
//
// RUN: %target-run %t/a.out_Debug
// RUN: %target-run %t/a.out_Release
// REQUIRES: executable_test
// UNSUPPORTED: OS=wasi
import StdlibUnittest
let testSuiteSuffix = _isDebugAssertConfiguration() ? "_debug" : "_release"
var DictionaryTraps = TestSuite("DictionaryTraps" + testSuiteSuffix)
DictionaryTraps.test("DuplicateKeys1")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
expectCrashLater()
let d = Dictionary(dictionaryLiteral:
(10, 1010), (20, 1020), (30, 1030), (10, 0))
_blackHole(d)
}
DictionaryTraps.test("DuplicateKeys2")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
expectCrashLater()
let d = Dictionary(dictionaryLiteral:
(10, 1010), (20, 1020), (30, 1030), (10, 1010))
_blackHole(d)
}
DictionaryTraps.test("DuplicateKeys3")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
expectCrashLater()
let d = [ 10: 1010, 10: 0 ]
_blackHole(d)
}
DictionaryTraps.test("RemoveInvalidIndex1")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
var d = Dictionary<Int, Int>()
let index = d.startIndex
expectCrashLater()
d.remove(at: index)
}
DictionaryTraps.test("RemoveInvalidIndex2")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
var d = Dictionary<Int, Int>()
let index = d.endIndex
expectCrashLater()
d.remove(at: index)
}
DictionaryTraps.test("RemoveInvalidIndex3")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
var d = [ 10: 1010, 20: 1020, 30: 1030 ]
let index = d.endIndex
expectCrashLater()
d.remove(at: index)
}
DictionaryTraps.test("RemoveInvalidIndex4")
.skip(.custom(
{ _isFastAssertConfiguration() },
reason: "this trap is not guaranteed to happen in -Ounchecked"))
.code {
var d = [ 10: 1010 ]
let index = d.index(forKey: 10)!
d.remove(at: index)
expectNil(d[10])
expectCrashLater()
d.remove(at: index)
}
runAllTests()
|