diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index fedc2633e0935..78b5cde10d08b 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -2517,7 +2517,17 @@ TypeSubstitutionMap TypeBase::getMemberSubstitutions(DeclContext *dc) { } // Continue looking into the parent. - baseTy = baseTy->castTo()->getParent(); + auto nominalTy = baseTy->getAs(); + if (!nominalTy || nominalTy->is()) { + baseTy = nullptr; + break; + } + + baseTy = nominalTy->getParent(); + if (!baseTy || baseTy->is()) { + baseTy = nullptr; + break; + } } return substitutions; diff --git a/validation-test/compiler_crashers/24900-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/24900-swift-typebase-getmembersubstitutions.swift similarity index 80% rename from validation-test/compiler_crashers/24900-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/24900-swift-typebase-getmembersubstitutions.swift index ca87e8be39cfb..f75a81d66bfe8 100644 --- a/validation-test/compiler_crashers/24900-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/24900-swift-typebase-getmembersubstitutions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/25329-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/25329-swift-typebase-getmembersubstitutions.swift similarity index 81% rename from validation-test/compiler_crashers/25329-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/25329-swift-typebase-getmembersubstitutions.swift index 9cf59f6892dff..0e865f8962c63 100644 --- a/validation-test/compiler_crashers/25329-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/25329-swift-typebase-getmembersubstitutions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/25704-vtable.swift b/validation-test/compiler_crashers_fixed/25704-vtable.swift similarity index 81% rename from validation-test/compiler_crashers/25704-vtable.swift rename to validation-test/compiler_crashers_fixed/25704-vtable.swift index 6c78ad81dd37d..e02384fb69403 100644 --- a/validation-test/compiler_crashers/25704-vtable.swift +++ b/validation-test/compiler_crashers_fixed/25704-vtable.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/26096-llvm-errs.swift b/validation-test/compiler_crashers_fixed/26096-llvm-errs.swift similarity index 81% rename from validation-test/compiler_crashers/26096-llvm-errs.swift rename to validation-test/compiler_crashers_fixed/26096-llvm-errs.swift index f66a2afee16a3..c56244b2df099 100644 --- a/validation-test/compiler_crashers/26096-llvm-errs.swift +++ b/validation-test/compiler_crashers_fixed/26096-llvm-errs.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26112-swift-genericsignature-get.swift b/validation-test/compiler_crashers_fixed/26112-swift-genericsignature-get.swift similarity index 80% rename from validation-test/compiler_crashers/26112-swift-genericsignature-get.swift rename to validation-test/compiler_crashers_fixed/26112-swift-genericsignature-get.swift index a4e7727ec6409..73bafafe4c2e1 100644 --- a/validation-test/compiler_crashers/26112-swift-genericsignature-get.swift +++ b/validation-test/compiler_crashers_fixed/26112-swift-genericsignature-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26118-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/26118-swift-lexer-leximpl.swift similarity index 80% rename from validation-test/compiler_crashers/26118-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/26118-swift-lexer-leximpl.swift index ca8513327e969..58eff207642f9 100644 --- a/validation-test/compiler_crashers/26118-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/26118-swift-lexer-leximpl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26130-swift-tupletype-get.swift b/validation-test/compiler_crashers_fixed/26130-swift-tupletype-get.swift similarity index 81% rename from validation-test/compiler_crashers/26130-swift-tupletype-get.swift rename to validation-test/compiler_crashers_fixed/26130-swift-tupletype-get.swift index a96b6a7309269..bb9e5c2828e73 100644 --- a/validation-test/compiler_crashers/26130-swift-tupletype-get.swift +++ b/validation-test/compiler_crashers_fixed/26130-swift-tupletype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26143-swift-declattribute-canattributeappearondeclkind.swift b/validation-test/compiler_crashers_fixed/26143-swift-declattribute-canattributeappearondeclkind.swift similarity index 81% rename from validation-test/compiler_crashers/26143-swift-declattribute-canattributeappearondeclkind.swift rename to validation-test/compiler_crashers_fixed/26143-swift-declattribute-canattributeappearondeclkind.swift index 27df9026cb83b..e9ca4c01d88a4 100644 --- a/validation-test/compiler_crashers/26143-swift-declattribute-canattributeappearondeclkind.swift +++ b/validation-test/compiler_crashers_fixed/26143-swift-declattribute-canattributeappearondeclkind.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26147-llvm-foldingset-swift-classtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/26147-llvm-foldingset-swift-classtype-nodeequals.swift similarity index 82% rename from validation-test/compiler_crashers/26147-llvm-foldingset-swift-classtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/26147-llvm-foldingset-swift-classtype-nodeequals.swift index fb808d79016cc..70c59f38a250c 100644 --- a/validation-test/compiler_crashers/26147-llvm-foldingset-swift-classtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/26147-llvm-foldingset-swift-classtype-nodeequals.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26164-std-function-func-swift-type-subst.swift b/validation-test/compiler_crashers_fixed/26164-std-function-func-swift-type-subst.swift similarity index 81% rename from validation-test/compiler_crashers/26164-std-function-func-swift-type-subst.swift rename to validation-test/compiler_crashers_fixed/26164-std-function-func-swift-type-subst.swift index 61e6668e22ae2..cde52601f3794 100644 --- a/validation-test/compiler_crashers/26164-std-function-func-swift-type-subst.swift +++ b/validation-test/compiler_crashers_fixed/26164-std-function-func-swift-type-subst.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26165-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/26165-swift-diagnosticengine-emitdiagnostic.swift similarity index 82% rename from validation-test/compiler_crashers/26165-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/26165-swift-diagnosticengine-emitdiagnostic.swift index 551b1b7a79456..c6a3931238a37 100644 --- a/validation-test/compiler_crashers/26165-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26165-swift-diagnosticengine-emitdiagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift index 387967de92aa7..ce4f7a1b44b41 100644 --- a/validation-test/compiler_crashers/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26166-swift-printingdiagnosticconsumer-handlediagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26168-swift-modulefile-maybereadpattern.swift b/validation-test/compiler_crashers_fixed/26168-swift-modulefile-maybereadpattern.swift similarity index 83% rename from validation-test/compiler_crashers/26168-swift-modulefile-maybereadpattern.swift rename to validation-test/compiler_crashers_fixed/26168-swift-modulefile-maybereadpattern.swift index de5c22ea0a79f..28485ffefae2b 100644 --- a/validation-test/compiler_crashers/26168-swift-modulefile-maybereadpattern.swift +++ b/validation-test/compiler_crashers_fixed/26168-swift-modulefile-maybereadpattern.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26172-swift-modulefile-lookupvalue.swift b/validation-test/compiler_crashers_fixed/26172-swift-modulefile-lookupvalue.swift similarity index 82% rename from validation-test/compiler_crashers/26172-swift-modulefile-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/26172-swift-modulefile-lookupvalue.swift index ef645300d9501..90833d3237602 100644 --- a/validation-test/compiler_crashers/26172-swift-modulefile-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/26172-swift-modulefile-lookupvalue.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26173-swift-typechecker-validatedecl.swift b/validation-test/compiler_crashers_fixed/26173-swift-typechecker-validatedecl.swift similarity index 81% rename from validation-test/compiler_crashers/26173-swift-typechecker-validatedecl.swift rename to validation-test/compiler_crashers_fixed/26173-swift-typechecker-validatedecl.swift index 2f98bfee7bae6..8102b9a1ea178 100644 --- a/validation-test/compiler_crashers/26173-swift-typechecker-validatedecl.swift +++ b/validation-test/compiler_crashers_fixed/26173-swift-typechecker-validatedecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26192-swift-maybeaddaccessorstovariable.swift b/validation-test/compiler_crashers_fixed/26192-swift-maybeaddaccessorstovariable.swift similarity index 80% rename from validation-test/compiler_crashers/26192-swift-maybeaddaccessorstovariable.swift rename to validation-test/compiler_crashers_fixed/26192-swift-maybeaddaccessorstovariable.swift index b10956f1b7774..4cf90039102f3 100644 --- a/validation-test/compiler_crashers/26192-swift-maybeaddaccessorstovariable.swift +++ b/validation-test/compiler_crashers_fixed/26192-swift-maybeaddaccessorstovariable.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26201-swift-astcontext-allocate.swift b/validation-test/compiler_crashers_fixed/26201-swift-astcontext-allocate.swift similarity index 80% rename from validation-test/compiler_crashers/26201-swift-astcontext-allocate.swift rename to validation-test/compiler_crashers_fixed/26201-swift-astcontext-allocate.swift index 40b964904270e..5d2f3b2a283d2 100644 --- a/validation-test/compiler_crashers/26201-swift-astcontext-allocate.swift +++ b/validation-test/compiler_crashers_fixed/26201-swift-astcontext-allocate.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26228-void.swift b/validation-test/compiler_crashers_fixed/26228-void.swift similarity index 82% rename from validation-test/compiler_crashers/26228-void.swift rename to validation-test/compiler_crashers_fixed/26228-void.swift index 7a061354995ff..d0a73b2efffb5 100644 --- a/validation-test/compiler_crashers/26228-void.swift +++ b/validation-test/compiler_crashers_fixed/26228-void.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26242-swift-typechecker-validatedecl.swift b/validation-test/compiler_crashers_fixed/26242-swift-typechecker-validatedecl.swift similarity index 81% rename from validation-test/compiler_crashers/26242-swift-typechecker-validatedecl.swift rename to validation-test/compiler_crashers_fixed/26242-swift-typechecker-validatedecl.swift index ae8bcf5cb9940..892f90248c937 100644 --- a/validation-test/compiler_crashers/26242-swift-typechecker-validatedecl.swift +++ b/validation-test/compiler_crashers_fixed/26242-swift-typechecker-validatedecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26274-swift-typebase-getanyoptionalobjecttype.swift b/validation-test/compiler_crashers_fixed/26274-swift-typebase-getanyoptionalobjecttype.swift similarity index 81% rename from validation-test/compiler_crashers/26274-swift-typebase-getanyoptionalobjecttype.swift rename to validation-test/compiler_crashers_fixed/26274-swift-typebase-getanyoptionalobjecttype.swift index 6c0a0526e9823..4554db778535c 100644 --- a/validation-test/compiler_crashers/26274-swift-typebase-getanyoptionalobjecttype.swift +++ b/validation-test/compiler_crashers_fixed/26274-swift-typebase-getanyoptionalobjecttype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26278-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/26278-swift-conformancelookuptable-updatelookuptable.swift similarity index 83% rename from validation-test/compiler_crashers/26278-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/26278-swift-conformancelookuptable-updatelookuptable.swift index 08063c1a8f46f..c724d799c79dc 100644 --- a/validation-test/compiler_crashers/26278-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/26278-swift-conformancelookuptable-updatelookuptable.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26318-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/26318-swift-substitutedtype-get.swift similarity index 80% rename from validation-test/compiler_crashers/26318-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/26318-swift-substitutedtype-get.swift index 426240fdcd2de..5250cf810aa88 100644 --- a/validation-test/compiler_crashers/26318-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/26318-swift-substitutedtype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26344-swift-parser-parseexprclosure.swift b/validation-test/compiler_crashers_fixed/26344-swift-parser-parseexprclosure.swift similarity index 81% rename from validation-test/compiler_crashers/26344-swift-parser-parseexprclosure.swift rename to validation-test/compiler_crashers_fixed/26344-swift-parser-parseexprclosure.swift index da9fd31183351..4d682b21305b0 100644 --- a/validation-test/compiler_crashers/26344-swift-parser-parseexprclosure.swift +++ b/validation-test/compiler_crashers_fixed/26344-swift-parser-parseexprclosure.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26377-swift-astcontext-allocate.swift b/validation-test/compiler_crashers_fixed/26377-swift-astcontext-allocate.swift similarity index 82% rename from validation-test/compiler_crashers/26377-swift-astcontext-allocate.swift rename to validation-test/compiler_crashers_fixed/26377-swift-astcontext-allocate.swift index 783644c7d2b12..8d3ea156140b3 100644 --- a/validation-test/compiler_crashers/26377-swift-astcontext-allocate.swift +++ b/validation-test/compiler_crashers_fixed/26377-swift-astcontext-allocate.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26430-swift-expr-walk.swift b/validation-test/compiler_crashers_fixed/26430-swift-expr-walk.swift similarity index 81% rename from validation-test/compiler_crashers/26430-swift-expr-walk.swift rename to validation-test/compiler_crashers_fixed/26430-swift-expr-walk.swift index 51f8e70c88f84..2373a2a44e631 100644 --- a/validation-test/compiler_crashers/26430-swift-expr-walk.swift +++ b/validation-test/compiler_crashers_fixed/26430-swift-expr-walk.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26473-swift-constraints-constraint-constraint.swift b/validation-test/compiler_crashers_fixed/26473-swift-constraints-constraint-constraint.swift similarity index 82% rename from validation-test/compiler_crashers/26473-swift-constraints-constraint-constraint.swift rename to validation-test/compiler_crashers_fixed/26473-swift-constraints-constraint-constraint.swift index 399368720c313..f6fca3c589882 100644 --- a/validation-test/compiler_crashers/26473-swift-constraints-constraint-constraint.swift +++ b/validation-test/compiler_crashers_fixed/26473-swift-constraints-constraint-constraint.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26507-swift-sourcemanager-extracttext.swift b/validation-test/compiler_crashers_fixed/26507-swift-sourcemanager-extracttext.swift similarity index 83% rename from validation-test/compiler_crashers/26507-swift-sourcemanager-extracttext.swift rename to validation-test/compiler_crashers_fixed/26507-swift-sourcemanager-extracttext.swift index 8e30bf4dd1864..4fbd77cd2506a 100644 --- a/validation-test/compiler_crashers/26507-swift-sourcemanager-extracttext.swift +++ b/validation-test/compiler_crashers_fixed/26507-swift-sourcemanager-extracttext.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26516-swift-boundgenerictype-get.swift b/validation-test/compiler_crashers_fixed/26516-swift-boundgenerictype-get.swift similarity index 82% rename from validation-test/compiler_crashers/26516-swift-boundgenerictype-get.swift rename to validation-test/compiler_crashers_fixed/26516-swift-boundgenerictype-get.swift index bee087f6ae3aa..d4859c90345be 100644 --- a/validation-test/compiler_crashers/26516-swift-boundgenerictype-get.swift +++ b/validation-test/compiler_crashers_fixed/26516-swift-boundgenerictype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26538-swift-parser-parsegetsetimpl.swift b/validation-test/compiler_crashers_fixed/26538-swift-parser-parsegetsetimpl.swift similarity index 82% rename from validation-test/compiler_crashers/26538-swift-parser-parsegetsetimpl.swift rename to validation-test/compiler_crashers_fixed/26538-swift-parser-parsegetsetimpl.swift index b7b7b553c5007..d7f3d59382927 100644 --- a/validation-test/compiler_crashers/26538-swift-parser-parsegetsetimpl.swift +++ b/validation-test/compiler_crashers_fixed/26538-swift-parser-parsegetsetimpl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26555-swift-typechecker-checkgenericarguments.swift b/validation-test/compiler_crashers_fixed/26555-swift-typechecker-checkgenericarguments.swift similarity index 82% rename from validation-test/compiler_crashers/26555-swift-typechecker-checkgenericarguments.swift rename to validation-test/compiler_crashers_fixed/26555-swift-typechecker-checkgenericarguments.swift index 0c5cbf961dc90..7f0c8001eec9a 100644 --- a/validation-test/compiler_crashers/26555-swift-typechecker-checkgenericarguments.swift +++ b/validation-test/compiler_crashers_fixed/26555-swift-typechecker-checkgenericarguments.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26587-swift-typechecker-computeaccessibility.swift b/validation-test/compiler_crashers_fixed/26587-swift-typechecker-computeaccessibility.swift similarity index 81% rename from validation-test/compiler_crashers/26587-swift-typechecker-computeaccessibility.swift rename to validation-test/compiler_crashers_fixed/26587-swift-typechecker-computeaccessibility.swift index 2b11daf3429ea..b7845b06549a6 100644 --- a/validation-test/compiler_crashers/26587-swift-typechecker-computeaccessibility.swift +++ b/validation-test/compiler_crashers_fixed/26587-swift-typechecker-computeaccessibility.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26673-llvm-triple-getosname.swift b/validation-test/compiler_crashers_fixed/26673-llvm-triple-getosname.swift similarity index 81% rename from validation-test/compiler_crashers/26673-llvm-triple-getosname.swift rename to validation-test/compiler_crashers_fixed/26673-llvm-triple-getosname.swift index 393bcf559f37b..994d3698d5998 100644 --- a/validation-test/compiler_crashers/26673-llvm-triple-getosname.swift +++ b/validation-test/compiler_crashers_fixed/26673-llvm-triple-getosname.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26686-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/26686-swift-substitutedtype-get.swift similarity index 83% rename from validation-test/compiler_crashers/26686-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/26686-swift-substitutedtype-get.swift index a6eb95426dcda..39456cc86d1ad 100644 --- a/validation-test/compiler_crashers/26686-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/26686-swift-substitutedtype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift b/validation-test/compiler_crashers_fixed/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift similarity index 82% rename from validation-test/compiler_crashers/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift rename to validation-test/compiler_crashers_fixed/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift index 7e8ce8d430c52..92033c1f597b6 100644 --- a/validation-test/compiler_crashers/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift +++ b/validation-test/compiler_crashers_fixed/26706-swift-constraints-constraintgraphscope-constraintgraphscope.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26720-void.swift b/validation-test/compiler_crashers_fixed/26720-void.swift similarity index 81% rename from validation-test/compiler_crashers/26720-void.swift rename to validation-test/compiler_crashers_fixed/26720-void.swift index 423f5d95d1432..2275b573011f8 100644 --- a/validation-test/compiler_crashers/26720-void.swift +++ b/validation-test/compiler_crashers_fixed/26720-void.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26756-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/26756-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 81% rename from validation-test/compiler_crashers/26756-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/26756-swift-unqualifiedlookup-unqualifiedlookup.swift index f4f9f7e62dd58..473cd76d04a88 100644 --- a/validation-test/compiler_crashers/26756-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/26756-swift-unqualifiedlookup-unqualifiedlookup.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26803-swift-parser-skipsingle.swift b/validation-test/compiler_crashers_fixed/26803-swift-parser-skipsingle.swift similarity index 86% rename from validation-test/compiler_crashers/26803-swift-parser-skipsingle.swift rename to validation-test/compiler_crashers_fixed/26803-swift-parser-skipsingle.swift index eacac4bb6b965..214a18caed870 100644 --- a/validation-test/compiler_crashers/26803-swift-parser-skipsingle.swift +++ b/validation-test/compiler_crashers_fixed/26803-swift-parser-skipsingle.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26859-swift-classdecl-classdecl.swift b/validation-test/compiler_crashers_fixed/26859-swift-classdecl-classdecl.swift similarity index 81% rename from validation-test/compiler_crashers/26859-swift-classdecl-classdecl.swift rename to validation-test/compiler_crashers_fixed/26859-swift-classdecl-classdecl.swift index ddfe3c26e7fa1..5a9d57b29ef88 100644 --- a/validation-test/compiler_crashers/26859-swift-classdecl-classdecl.swift +++ b/validation-test/compiler_crashers_fixed/26859-swift-classdecl-classdecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift similarity index 81% rename from validation-test/compiler_crashers/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift index 1ac41ec38dfa4..ab26bebeefafa 100644 --- a/validation-test/compiler_crashers/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/26884-std-function-func-swift-constraints-constraintsystem-simplifytype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/26945-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/26945-swift-typebase-getmembersubstitutions.swift similarity index 81% rename from validation-test/compiler_crashers/26945-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/26945-swift-typebase-getmembersubstitutions.swift index 1f72bc15de68f..d9b8076176f18 100644 --- a/validation-test/compiler_crashers/26945-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/26945-swift-typebase-getmembersubstitutions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/26997-swift-stmt-walk.swift b/validation-test/compiler_crashers_fixed/26997-swift-stmt-walk.swift similarity index 82% rename from validation-test/compiler_crashers/26997-swift-stmt-walk.swift rename to validation-test/compiler_crashers_fixed/26997-swift-stmt-walk.swift index b3726ba9c6731..6dd011f84a68a 100644 --- a/validation-test/compiler_crashers/26997-swift-stmt-walk.swift +++ b/validation-test/compiler_crashers_fixed/26997-swift-stmt-walk.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27033-swift-mangle-mangler-mangleidentifier.swift b/validation-test/compiler_crashers_fixed/27033-swift-mangle-mangler-mangleidentifier.swift similarity index 81% rename from validation-test/compiler_crashers/27033-swift-mangle-mangler-mangleidentifier.swift rename to validation-test/compiler_crashers_fixed/27033-swift-mangle-mangler-mangleidentifier.swift index 9fcf19a38fd45..c68a940e342a9 100644 --- a/validation-test/compiler_crashers/27033-swift-mangle-mangler-mangleidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27033-swift-mangle-mangler-mangleidentifier.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27070-no-stacktrace.swift b/validation-test/compiler_crashers_fixed/27070-no-stacktrace.swift similarity index 83% rename from validation-test/compiler_crashers/27070-no-stacktrace.swift rename to validation-test/compiler_crashers_fixed/27070-no-stacktrace.swift index 100b61d05eec1..b63d60e62a7c9 100644 --- a/validation-test/compiler_crashers/27070-no-stacktrace.swift +++ b/validation-test/compiler_crashers_fixed/27070-no-stacktrace.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27093-swift-constraints-constraintsystem-solve.swift b/validation-test/compiler_crashers_fixed/27093-swift-constraints-constraintsystem-solve.swift similarity index 84% rename from validation-test/compiler_crashers/27093-swift-constraints-constraintsystem-solve.swift rename to validation-test/compiler_crashers_fixed/27093-swift-constraints-constraintsystem-solve.swift index 5ee63c6f4bc61..084e074b7fee6 100644 --- a/validation-test/compiler_crashers/27093-swift-constraints-constraintsystem-solve.swift +++ b/validation-test/compiler_crashers_fixed/27093-swift-constraints-constraintsystem-solve.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27116-swift-constraints-constraintgraph-unbindtypevariable.swift b/validation-test/compiler_crashers_fixed/27116-swift-constraints-constraintgraph-unbindtypevariable.swift similarity index 84% rename from validation-test/compiler_crashers/27116-swift-constraints-constraintgraph-unbindtypevariable.swift rename to validation-test/compiler_crashers_fixed/27116-swift-constraints-constraintgraph-unbindtypevariable.swift index 24a0bd1b0d657..666afb2857db4 100644 --- a/validation-test/compiler_crashers/27116-swift-constraints-constraintgraph-unbindtypevariable.swift +++ b/validation-test/compiler_crashers_fixed/27116-swift-constraints-constraintgraph-unbindtypevariable.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift b/validation-test/compiler_crashers_fixed/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift similarity index 81% rename from validation-test/compiler_crashers/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift index 483b2c48cfff8..0d645efb921af 100644 --- a/validation-test/compiler_crashers/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27120-llvm-foldingset-swift-constraints-constraintlocator-nodeequals.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27130-swift-typechecker-validatetype.swift b/validation-test/compiler_crashers_fixed/27130-swift-typechecker-validatetype.swift similarity index 81% rename from validation-test/compiler_crashers/27130-swift-typechecker-validatetype.swift rename to validation-test/compiler_crashers_fixed/27130-swift-typechecker-validatetype.swift index 6aaf486e01884..eb94d0efbaa78 100644 --- a/validation-test/compiler_crashers/27130-swift-typechecker-validatetype.swift +++ b/validation-test/compiler_crashers_fixed/27130-swift-typechecker-validatetype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift b/validation-test/compiler_crashers_fixed/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift similarity index 83% rename from validation-test/compiler_crashers/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift rename to validation-test/compiler_crashers_fixed/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift index a113fe2d3bae2..14a6ba0817b83 100644 --- a/validation-test/compiler_crashers/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift +++ b/validation-test/compiler_crashers_fixed/27278-swift-constraints-constraintgraph-computeconnectedcomponents.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27317-swift-genericparamlist-addnestedarchetypes.swift b/validation-test/compiler_crashers_fixed/27317-swift-genericparamlist-addnestedarchetypes.swift similarity index 84% rename from validation-test/compiler_crashers/27317-swift-genericparamlist-addnestedarchetypes.swift rename to validation-test/compiler_crashers_fixed/27317-swift-genericparamlist-addnestedarchetypes.swift index 263a6b413df4d..36ba742d218ba 100644 --- a/validation-test/compiler_crashers/27317-swift-genericparamlist-addnestedarchetypes.swift +++ b/validation-test/compiler_crashers_fixed/27317-swift-genericparamlist-addnestedarchetypes.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27323-swift-constraints-constraintgraph-addconstraint.swift b/validation-test/compiler_crashers_fixed/27323-swift-constraints-constraintgraph-addconstraint.swift similarity index 82% rename from validation-test/compiler_crashers/27323-swift-constraints-constraintgraph-addconstraint.swift rename to validation-test/compiler_crashers_fixed/27323-swift-constraints-constraintgraph-addconstraint.swift index 99b7fef1301af..858c0e4cdbe5c 100644 --- a/validation-test/compiler_crashers/27323-swift-constraints-constraintgraph-addconstraint.swift +++ b/validation-test/compiler_crashers_fixed/27323-swift-constraints-constraintgraph-addconstraint.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27335-swift-constraints-constraintsystem-assignfixedtype.swift b/validation-test/compiler_crashers_fixed/27335-swift-constraints-constraintsystem-assignfixedtype.swift similarity index 82% rename from validation-test/compiler_crashers/27335-swift-constraints-constraintsystem-assignfixedtype.swift rename to validation-test/compiler_crashers_fixed/27335-swift-constraints-constraintsystem-assignfixedtype.swift index 523f023a8c612..68aa98f9415b6 100644 --- a/validation-test/compiler_crashers/27335-swift-constraints-constraintsystem-assignfixedtype.swift +++ b/validation-test/compiler_crashers_fixed/27335-swift-constraints-constraintsystem-assignfixedtype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27339-llvm-foldingset-swift-tupletype-nodeequals.swift b/validation-test/compiler_crashers_fixed/27339-llvm-foldingset-swift-tupletype-nodeequals.swift similarity index 83% rename from validation-test/compiler_crashers/27339-llvm-foldingset-swift-tupletype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27339-llvm-foldingset-swift-tupletype-nodeequals.swift index 5334342ee35df..e13633d3dbfeb 100644 --- a/validation-test/compiler_crashers/27339-llvm-foldingset-swift-tupletype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27339-llvm-foldingset-swift-tupletype-nodeequals.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27340-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/27340-swift-constraints-constraintsystem-simplifytype.swift similarity index 83% rename from validation-test/compiler_crashers/27340-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/27340-swift-constraints-constraintsystem-simplifytype.swift index fd03310082581..e46e304bbe13f 100644 --- a/validation-test/compiler_crashers/27340-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/27340-swift-constraints-constraintsystem-simplifytype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27341-swift-conformancelookuptable-getallprotocols.swift b/validation-test/compiler_crashers_fixed/27341-swift-conformancelookuptable-getallprotocols.swift similarity index 82% rename from validation-test/compiler_crashers/27341-swift-conformancelookuptable-getallprotocols.swift rename to validation-test/compiler_crashers_fixed/27341-swift-conformancelookuptable-getallprotocols.swift index 7c4a07bd7066f..525312cb5aa0f 100644 --- a/validation-test/compiler_crashers/27341-swift-conformancelookuptable-getallprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27341-swift-conformancelookuptable-getallprotocols.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift b/validation-test/compiler_crashers_fixed/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift similarity index 83% rename from validation-test/compiler_crashers/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift rename to validation-test/compiler_crashers_fixed/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift index 7de41a4a3582a..4f0555c7b7960 100644 --- a/validation-test/compiler_crashers/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift +++ b/validation-test/compiler_crashers_fixed/27399-swift-constraints-constraintsystem-getfixedtyperecursive.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27403-swift-typechecker-resolveinheritanceclause.swift b/validation-test/compiler_crashers_fixed/27403-swift-typechecker-resolveinheritanceclause.swift similarity index 82% rename from validation-test/compiler_crashers/27403-swift-typechecker-resolveinheritanceclause.swift rename to validation-test/compiler_crashers_fixed/27403-swift-typechecker-resolveinheritanceclause.swift index 31c048fe30d28..5be8e732f466b 100644 --- a/validation-test/compiler_crashers/27403-swift-typechecker-resolveinheritanceclause.swift +++ b/validation-test/compiler_crashers_fixed/27403-swift-typechecker-resolveinheritanceclause.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27405-swift-constraints-constraintsystem-simplifyconstraint.swift b/validation-test/compiler_crashers_fixed/27405-swift-constraints-constraintsystem-simplifyconstraint.swift similarity index 83% rename from validation-test/compiler_crashers/27405-swift-constraints-constraintsystem-simplifyconstraint.swift rename to validation-test/compiler_crashers_fixed/27405-swift-constraints-constraintsystem-simplifyconstraint.swift index eb867ce8f96ce..9e2353d0e49e4 100644 --- a/validation-test/compiler_crashers/27405-swift-constraints-constraintsystem-simplifyconstraint.swift +++ b/validation-test/compiler_crashers_fixed/27405-swift-constraints-constraintsystem-simplifyconstraint.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27409-llvm-foldingset-swift-enumtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/27409-llvm-foldingset-swift-enumtype-nodeequals.swift similarity index 81% rename from validation-test/compiler_crashers/27409-llvm-foldingset-swift-enumtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27409-llvm-foldingset-swift-enumtype-nodeequals.swift index db1582b4f471a..d665c021de574 100644 --- a/validation-test/compiler_crashers/27409-llvm-foldingset-swift-enumtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27409-llvm-foldingset-swift-enumtype-nodeequals.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27412-swift-typechecker-validatedecl.swift b/validation-test/compiler_crashers_fixed/27412-swift-typechecker-validatedecl.swift similarity index 84% rename from validation-test/compiler_crashers/27412-swift-typechecker-validatedecl.swift rename to validation-test/compiler_crashers_fixed/27412-swift-typechecker-validatedecl.swift index 82e8c9bb650f2..668c1e2b9ccf9 100644 --- a/validation-test/compiler_crashers/27412-swift-typechecker-validatedecl.swift +++ b/validation-test/compiler_crashers_fixed/27412-swift-typechecker-validatedecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27428-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/27428-swift-diagnosticengine-emitdiagnostic.swift similarity index 83% rename from validation-test/compiler_crashers/27428-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27428-swift-diagnosticengine-emitdiagnostic.swift index 0d28a4a7a4809..fc76608340f28 100644 --- a/validation-test/compiler_crashers/27428-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27428-swift-diagnosticengine-emitdiagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27431-swift-constraints-constraintsystem-finalize.swift b/validation-test/compiler_crashers_fixed/27431-swift-constraints-constraintsystem-finalize.swift similarity index 84% rename from validation-test/compiler_crashers/27431-swift-constraints-constraintsystem-finalize.swift rename to validation-test/compiler_crashers_fixed/27431-swift-constraints-constraintsystem-finalize.swift index b9251fc205674..7def68660bf66 100644 --- a/validation-test/compiler_crashers/27431-swift-constraints-constraintsystem-finalize.swift +++ b/validation-test/compiler_crashers_fixed/27431-swift-constraints-constraintsystem-finalize.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27434-swift-parser-diagnose.swift b/validation-test/compiler_crashers_fixed/27434-swift-parser-diagnose.swift similarity index 83% rename from validation-test/compiler_crashers/27434-swift-parser-diagnose.swift rename to validation-test/compiler_crashers_fixed/27434-swift-parser-diagnose.swift index 7cb4951e58c76..02cc66e4d8021 100644 --- a/validation-test/compiler_crashers/27434-swift-parser-diagnose.swift +++ b/validation-test/compiler_crashers_fixed/27434-swift-parser-diagnose.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27473-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27473-swift-inflightdiagnostic.swift similarity index 82% rename from validation-test/compiler_crashers/27473-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27473-swift-inflightdiagnostic.swift index 09a1b126bc718..f51f1c8e61065 100644 --- a/validation-test/compiler_crashers/27473-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27473-swift-inflightdiagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27484-swift-typebase-isspecialized.swift b/validation-test/compiler_crashers_fixed/27484-swift-typebase-isspecialized.swift similarity index 83% rename from validation-test/compiler_crashers/27484-swift-typebase-isspecialized.swift rename to validation-test/compiler_crashers_fixed/27484-swift-typebase-isspecialized.swift index 260a468b55bb0..06c1b469092bc 100644 --- a/validation-test/compiler_crashers/27484-swift-typebase-isspecialized.swift +++ b/validation-test/compiler_crashers_fixed/27484-swift-typebase-isspecialized.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27523-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/27523-swift-lexer-leximpl.swift similarity index 88% rename from validation-test/compiler_crashers/27523-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/27523-swift-lexer-leximpl.swift index afbd20663e64f..9f218a76d91f6 100644 --- a/validation-test/compiler_crashers/27523-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/27523-swift-lexer-leximpl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift b/validation-test/compiler_crashers_fixed/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift similarity index 81% rename from validation-test/compiler_crashers/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift rename to validation-test/compiler_crashers_fixed/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift index ef2d49139ea51..8aeabb76616a3 100644 --- a/validation-test/compiler_crashers/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift +++ b/validation-test/compiler_crashers_fixed/27547-swift-constraints-constraintsystem-getalternativeliteraltypes.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27548-swift-constraints-constraintsystem-assignfixedtype.swift b/validation-test/compiler_crashers_fixed/27548-swift-constraints-constraintsystem-assignfixedtype.swift similarity index 84% rename from validation-test/compiler_crashers/27548-swift-constraints-constraintsystem-assignfixedtype.swift rename to validation-test/compiler_crashers_fixed/27548-swift-constraints-constraintsystem-assignfixedtype.swift index 0622cbf523408..78d87d4cdfb81 100644 --- a/validation-test/compiler_crashers/27548-swift-constraints-constraintsystem-assignfixedtype.swift +++ b/validation-test/compiler_crashers_fixed/27548-swift-constraints-constraintsystem-assignfixedtype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27558-swift-parser-parsetypeidentifier.swift b/validation-test/compiler_crashers_fixed/27558-swift-parser-parsetypeidentifier.swift similarity index 85% rename from validation-test/compiler_crashers/27558-swift-parser-parsetypeidentifier.swift rename to validation-test/compiler_crashers_fixed/27558-swift-parser-parsetypeidentifier.swift index 360180097af45..082259369fca8 100644 --- a/validation-test/compiler_crashers/27558-swift-parser-parsetypeidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27558-swift-parser-parsetypeidentifier.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27592-swift-genericparamlist-addnestedarchetypes.swift b/validation-test/compiler_crashers_fixed/27592-swift-genericparamlist-addnestedarchetypes.swift similarity index 83% rename from validation-test/compiler_crashers/27592-swift-genericparamlist-addnestedarchetypes.swift rename to validation-test/compiler_crashers_fixed/27592-swift-genericparamlist-addnestedarchetypes.swift index ff1a861b08ed0..5032c8279cc86 100644 --- a/validation-test/compiler_crashers/27592-swift-genericparamlist-addnestedarchetypes.swift +++ b/validation-test/compiler_crashers_fixed/27592-swift-genericparamlist-addnestedarchetypes.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27614-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27614-swift-typebase-getcanonicaltype.swift similarity index 82% rename from validation-test/compiler_crashers/27614-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27614-swift-typebase-getcanonicaltype.swift index 13bc18ed1e63c..161ea9e3b0391 100644 --- a/validation-test/compiler_crashers/27614-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27614-swift-typebase-getcanonicaltype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27615-swift-nominaltypedecl-prepareextensions.swift b/validation-test/compiler_crashers_fixed/27615-swift-nominaltypedecl-prepareextensions.swift similarity index 84% rename from validation-test/compiler_crashers/27615-swift-nominaltypedecl-prepareextensions.swift rename to validation-test/compiler_crashers_fixed/27615-swift-nominaltypedecl-prepareextensions.swift index 8a0e2d4180cf1..3650865e3351e 100644 --- a/validation-test/compiler_crashers/27615-swift-nominaltypedecl-prepareextensions.swift +++ b/validation-test/compiler_crashers_fixed/27615-swift-nominaltypedecl-prepareextensions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27627-swift-typechecker-checkdeclarationavailability.swift b/validation-test/compiler_crashers_fixed/27627-swift-typechecker-checkdeclarationavailability.swift similarity index 82% rename from validation-test/compiler_crashers/27627-swift-typechecker-checkdeclarationavailability.swift rename to validation-test/compiler_crashers_fixed/27627-swift-typechecker-checkdeclarationavailability.swift index 884c09b2003a2..041c9d2053dca 100644 --- a/validation-test/compiler_crashers/27627-swift-typechecker-checkdeclarationavailability.swift +++ b/validation-test/compiler_crashers_fixed/27627-swift-typechecker-checkdeclarationavailability.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27654-swift-streamprinter-printtext.swift b/validation-test/compiler_crashers_fixed/27654-swift-streamprinter-printtext.swift similarity index 84% rename from validation-test/compiler_crashers/27654-swift-streamprinter-printtext.swift rename to validation-test/compiler_crashers_fixed/27654-swift-streamprinter-printtext.swift index a296a95ef548d..c9b384c81e2ca 100644 --- a/validation-test/compiler_crashers/27654-swift-streamprinter-printtext.swift +++ b/validation-test/compiler_crashers_fixed/27654-swift-streamprinter-printtext.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27707-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27707-swift-typebase-getcanonicaltype.swift similarity index 82% rename from validation-test/compiler_crashers/27707-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27707-swift-typebase-getcanonicaltype.swift index 4a6cdbd06467c..89ce2a9ecdae5 100644 --- a/validation-test/compiler_crashers/27707-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27707-swift-typebase-getcanonicaltype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27718-swift-parser-parseidentifier.swift b/validation-test/compiler_crashers_fixed/27718-swift-parser-parseidentifier.swift similarity index 82% rename from validation-test/compiler_crashers/27718-swift-parser-parseidentifier.swift rename to validation-test/compiler_crashers_fixed/27718-swift-parser-parseidentifier.swift index c5f39c4d3b499..0fce1148f6921 100644 --- a/validation-test/compiler_crashers/27718-swift-parser-parseidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27718-swift-parser-parseidentifier.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27728-swift-modulefile-loadextensions.swift b/validation-test/compiler_crashers_fixed/27728-swift-modulefile-loadextensions.swift similarity index 81% rename from validation-test/compiler_crashers/27728-swift-modulefile-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27728-swift-modulefile-loadextensions.swift index 78e59b5170ce6..1a34051e6d14c 100644 --- a/validation-test/compiler_crashers/27728-swift-modulefile-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27728-swift-modulefile-loadextensions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27741-swift-structtype-get.swift b/validation-test/compiler_crashers_fixed/27741-swift-structtype-get.swift similarity index 83% rename from validation-test/compiler_crashers/27741-swift-structtype-get.swift rename to validation-test/compiler_crashers_fixed/27741-swift-structtype-get.swift index 8565de2bd53db..3e6cbea14f85a 100644 --- a/validation-test/compiler_crashers/27741-swift-structtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27741-swift-structtype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27788-swift-constraints-solution-solution.swift b/validation-test/compiler_crashers_fixed/27788-swift-constraints-solution-solution.swift similarity index 84% rename from validation-test/compiler_crashers/27788-swift-constraints-solution-solution.swift rename to validation-test/compiler_crashers_fixed/27788-swift-constraints-solution-solution.swift index 0b41a536e1d9b..6a853d6475bba 100644 --- a/validation-test/compiler_crashers/27788-swift-constraints-solution-solution.swift +++ b/validation-test/compiler_crashers_fixed/27788-swift-constraints-solution-solution.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27825-swift-functiontype-get.swift b/validation-test/compiler_crashers_fixed/27825-swift-functiontype-get.swift similarity index 84% rename from validation-test/compiler_crashers/27825-swift-functiontype-get.swift rename to validation-test/compiler_crashers_fixed/27825-swift-functiontype-get.swift index dd48a5e726729..3b40a770f9d91 100644 --- a/validation-test/compiler_crashers/27825-swift-functiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27825-swift-functiontype-get.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27830-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/27830-swift-constraints-constraintsystem-simplifytype.swift similarity index 81% rename from validation-test/compiler_crashers/27830-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/27830-swift-constraints-constraintsystem-simplifytype.swift index 03b9dfca62a1d..6f325339016c1 100644 --- a/validation-test/compiler_crashers/27830-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/27830-swift-constraints-constraintsystem-simplifytype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27833-swift-conformancelookuptable-lookupconformances.swift b/validation-test/compiler_crashers_fixed/27833-swift-conformancelookuptable-lookupconformances.swift similarity index 84% rename from validation-test/compiler_crashers/27833-swift-conformancelookuptable-lookupconformances.swift rename to validation-test/compiler_crashers_fixed/27833-swift-conformancelookuptable-lookupconformances.swift index 6a39ff6736dd2..6721ef32cf666 100644 --- a/validation-test/compiler_crashers/27833-swift-conformancelookuptable-lookupconformances.swift +++ b/validation-test/compiler_crashers_fixed/27833-swift-conformancelookuptable-lookupconformances.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift b/validation-test/compiler_crashers_fixed/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift similarity index 83% rename from validation-test/compiler_crashers/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift rename to validation-test/compiler_crashers_fixed/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift index 5b8a2d7913a18..ebb1ee610a6ef 100644 --- a/validation-test/compiler_crashers/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift +++ b/validation-test/compiler_crashers_fixed/27849-swift-constraints-constraintsystem-gettypeofmemberreference.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27861-swift-tuplepattern-createsimple.swift b/validation-test/compiler_crashers_fixed/27861-swift-tuplepattern-createsimple.swift similarity index 80% rename from validation-test/compiler_crashers/27861-swift-tuplepattern-createsimple.swift rename to validation-test/compiler_crashers_fixed/27861-swift-tuplepattern-createsimple.swift index 4a93e675cc639..fc5562ff5920f 100644 --- a/validation-test/compiler_crashers/27861-swift-tuplepattern-createsimple.swift +++ b/validation-test/compiler_crashers_fixed/27861-swift-tuplepattern-createsimple.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/27866-swift-typebase-getoptionalobjecttype.swift b/validation-test/compiler_crashers_fixed/27866-swift-typebase-getoptionalobjecttype.swift similarity index 83% rename from validation-test/compiler_crashers/27866-swift-typebase-getoptionalobjecttype.swift rename to validation-test/compiler_crashers_fixed/27866-swift-typebase-getoptionalobjecttype.swift index 7ecdb92190ec5..a8bb856acebf3 100644 --- a/validation-test/compiler_crashers/27866-swift-typebase-getoptionalobjecttype.swift +++ b/validation-test/compiler_crashers_fixed/27866-swift-typebase-getoptionalobjecttype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift b/validation-test/compiler_crashers_fixed/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift similarity index 85% rename from validation-test/compiler_crashers/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift rename to validation-test/compiler_crashers_fixed/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift index f9b5af9117002..23471a72552ae 100644 --- a/validation-test/compiler_crashers/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift +++ b/validation-test/compiler_crashers_fixed/28024-swift-constraints-constraintlocatorbuilder-trysimplifytoexpr.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28027-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/28027-swift-typebase-getmembersubstitutions.swift similarity index 89% rename from validation-test/compiler_crashers/28027-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/28027-swift-typebase-getmembersubstitutions.swift index 0453acf311010..52c529c825eca 100644 --- a/validation-test/compiler_crashers/28027-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/28027-swift-typebase-getmembersubstitutions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28029-swift-constraints-constraintsystem-performmemberlookup.swift b/validation-test/compiler_crashers_fixed/28029-swift-constraints-constraintsystem-performmemberlookup.swift similarity index 85% rename from validation-test/compiler_crashers/28029-swift-constraints-constraintsystem-performmemberlookup.swift rename to validation-test/compiler_crashers_fixed/28029-swift-constraints-constraintsystem-performmemberlookup.swift index a39def08ac5fd..89eb45126ac28 100644 --- a/validation-test/compiler_crashers/28029-swift-constraints-constraintsystem-performmemberlookup.swift +++ b/validation-test/compiler_crashers_fixed/28029-swift-constraints-constraintsystem-performmemberlookup.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28031-swift-clangimporter-lookupvalue.swift b/validation-test/compiler_crashers_fixed/28031-swift-clangimporter-lookupvalue.swift similarity index 83% rename from validation-test/compiler_crashers/28031-swift-clangimporter-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/28031-swift-clangimporter-lookupvalue.swift index 57a1dd0f5909d..6b43ddc80fa81 100644 --- a/validation-test/compiler_crashers/28031-swift-clangimporter-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/28031-swift-clangimporter-lookupvalue.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28050-swift-abstractfunctiondecl-setgenericparams.swift b/validation-test/compiler_crashers_fixed/28050-swift-abstractfunctiondecl-setgenericparams.swift similarity index 83% rename from validation-test/compiler_crashers/28050-swift-abstractfunctiondecl-setgenericparams.swift rename to validation-test/compiler_crashers_fixed/28050-swift-abstractfunctiondecl-setgenericparams.swift index c55f102e878d4..34f53abf02b98 100644 --- a/validation-test/compiler_crashers/28050-swift-abstractfunctiondecl-setgenericparams.swift +++ b/validation-test/compiler_crashers_fixed/28050-swift-abstractfunctiondecl-setgenericparams.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28098-swift-constraints-constraintsystem-performmemberlookup.swift b/validation-test/compiler_crashers_fixed/28098-swift-constraints-constraintsystem-performmemberlookup.swift similarity index 83% rename from validation-test/compiler_crashers/28098-swift-constraints-constraintsystem-performmemberlookup.swift rename to validation-test/compiler_crashers_fixed/28098-swift-constraints-constraintsystem-performmemberlookup.swift index da58b54c25bdf..ed4645c7c7de1 100644 --- a/validation-test/compiler_crashers/28098-swift-constraints-constraintsystem-performmemberlookup.swift +++ b/validation-test/compiler_crashers_fixed/28098-swift-constraints-constraintsystem-performmemberlookup.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28122-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/28122-swift-inflightdiagnostic.swift similarity index 84% rename from validation-test/compiler_crashers/28122-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/28122-swift-inflightdiagnostic.swift index c72d7e7436442..2ca59d6a68198 100644 --- a/validation-test/compiler_crashers/28122-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/28122-swift-inflightdiagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28134-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/28134-swift-typebase-getmembersubstitutions.swift similarity index 86% rename from validation-test/compiler_crashers/28134-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/28134-swift-typebase-getmembersubstitutions.swift index 077305f48ce25..2d660305c23c9 100644 --- a/validation-test/compiler_crashers/28134-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/28134-swift-typebase-getmembersubstitutions.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28140-swift-typedecl-getdeclaredinterfacetype.swift b/validation-test/compiler_crashers_fixed/28140-swift-typedecl-getdeclaredinterfacetype.swift similarity index 85% rename from validation-test/compiler_crashers/28140-swift-typedecl-getdeclaredinterfacetype.swift rename to validation-test/compiler_crashers_fixed/28140-swift-typedecl-getdeclaredinterfacetype.swift index a97471c81a242..812f7d1027fe0 100644 --- a/validation-test/compiler_crashers/28140-swift-typedecl-getdeclaredinterfacetype.swift +++ b/validation-test/compiler_crashers_fixed/28140-swift-typedecl-getdeclaredinterfacetype.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28141-swift-typechecker-addimplicitconstructors.swift b/validation-test/compiler_crashers_fixed/28141-swift-typechecker-addimplicitconstructors.swift similarity index 83% rename from validation-test/compiler_crashers/28141-swift-typechecker-addimplicitconstructors.swift rename to validation-test/compiler_crashers_fixed/28141-swift-typechecker-addimplicitconstructors.swift index 5da12d34dfee5..614e987368b8c 100644 --- a/validation-test/compiler_crashers/28141-swift-typechecker-addimplicitconstructors.swift +++ b/validation-test/compiler_crashers_fixed/28141-swift-typechecker-addimplicitconstructors.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift b/validation-test/compiler_crashers_fixed/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift similarity index 85% rename from validation-test/compiler_crashers/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift rename to validation-test/compiler_crashers_fixed/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift index 1c5e8e632a9b9..021c3d8fed546 100644 --- a/validation-test/compiler_crashers/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift +++ b/validation-test/compiler_crashers_fixed/28146-swift-clangimporter-implementation-importdeclandcacheimpl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift b/validation-test/compiler_crashers_fixed/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift similarity index 85% rename from validation-test/compiler_crashers/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift rename to validation-test/compiler_crashers_fixed/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift index 21f2b29a3ea78..4805f42827c86 100644 --- a/validation-test/compiler_crashers/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift +++ b/validation-test/compiler_crashers_fixed/28151-swift-constraints-constraintsystem-simplifymemberconstraint.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28152-swift-conformancelookuptable-lookupconformance.swift b/validation-test/compiler_crashers_fixed/28152-swift-conformancelookuptable-lookupconformance.swift similarity index 85% rename from validation-test/compiler_crashers/28152-swift-conformancelookuptable-lookupconformance.swift rename to validation-test/compiler_crashers_fixed/28152-swift-conformancelookuptable-lookupconformance.swift index 11cb808547c91..df8c88d6ef4e5 100644 --- a/validation-test/compiler_crashers/28152-swift-conformancelookuptable-lookupconformance.swift +++ b/validation-test/compiler_crashers_fixed/28152-swift-conformancelookuptable-lookupconformance.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28159-swift-clangimporter-lookupvalue.swift b/validation-test/compiler_crashers_fixed/28159-swift-clangimporter-lookupvalue.swift similarity index 85% rename from validation-test/compiler_crashers/28159-swift-clangimporter-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/28159-swift-clangimporter-lookupvalue.swift index 1db3711105b86..975efb4b4e612 100644 --- a/validation-test/compiler_crashers/28159-swift-clangimporter-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/28159-swift-clangimporter-lookupvalue.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28160-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/28160-swift-inflightdiagnostic.swift similarity index 86% rename from validation-test/compiler_crashers/28160-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/28160-swift-inflightdiagnostic.swift index 71848684ea35b..1b4f314972fa8 100644 --- a/validation-test/compiler_crashers/28160-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/28160-swift-inflightdiagnostic.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28161-swift-constraints-constraintsystem-solvesingle.swift b/validation-test/compiler_crashers_fixed/28161-swift-constraints-constraintsystem-solvesingle.swift similarity index 85% rename from validation-test/compiler_crashers/28161-swift-constraints-constraintsystem-solvesingle.swift rename to validation-test/compiler_crashers_fixed/28161-swift-constraints-constraintsystem-solvesingle.swift index e44a64eec9586..02f8f2ff9a512 100644 --- a/validation-test/compiler_crashers/28161-swift-constraints-constraintsystem-solvesingle.swift +++ b/validation-test/compiler_crashers_fixed/28161-swift-constraints-constraintsystem-solvesingle.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28162-swift-astcontext-addedexternaldecl.swift b/validation-test/compiler_crashers_fixed/28162-swift-astcontext-addedexternaldecl.swift similarity index 82% rename from validation-test/compiler_crashers/28162-swift-astcontext-addedexternaldecl.swift rename to validation-test/compiler_crashers_fixed/28162-swift-astcontext-addedexternaldecl.swift index bd2f51eec4a0d..f10333ebf0e92 100644 --- a/validation-test/compiler_crashers/28162-swift-astcontext-addedexternaldecl.swift +++ b/validation-test/compiler_crashers_fixed/28162-swift-astcontext-addedexternaldecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift) diff --git a/validation-test/compiler_crashers/28163-swift-astcontext-getoptionaldecl.swift b/validation-test/compiler_crashers_fixed/28163-swift-astcontext-getoptionaldecl.swift similarity index 84% rename from validation-test/compiler_crashers/28163-swift-astcontext-getoptionaldecl.swift rename to validation-test/compiler_crashers_fixed/28163-swift-astcontext-getoptionaldecl.swift index eb33ec5745cf4..a05270dcfade1 100644 --- a/validation-test/compiler_crashers/28163-swift-astcontext-getoptionaldecl.swift +++ b/validation-test/compiler_crashers_fixed/28163-swift-astcontext-getoptionaldecl.swift @@ -1,4 +1,4 @@ -// RUN: not --crash %target-swift-frontend %s -parse +// RUN: not %target-swift-frontend %s -parse // Distributed under the terms of the MIT license // Test case submitted to project by https://github.com/practicalswift (practicalswift)