diff --git a/lib/Sema/TypeCheckGeneric.cpp b/lib/Sema/TypeCheckGeneric.cpp index 26569df7d0bfd..9535bf34347a8 100644 --- a/lib/Sema/TypeCheckGeneric.cpp +++ b/lib/Sema/TypeCheckGeneric.cpp @@ -30,7 +30,11 @@ Type DependentGenericTypeResolver::resolveDependentMemberType( DeclContext *DC, SourceRange baseRange, ComponentIdentTypeRepr *ref) { - return Builder.resolveArchetype(baseTy)->getRepresentative() + auto archetype = Builder.resolveArchetype(baseTy); + if (!archetype) + return ErrorType::get(DC->getASTContext()); + + return archetype->getRepresentative() ->getNestedType(ref->getIdentifier(), Builder) ->getDependentType(Builder, true); } diff --git a/validation-test/compiler_crashers/00066-diagnoseunknowntype.swift b/validation-test/compiler_crashers_fixed/00066-diagnoseunknowntype.swift similarity index 79% rename from validation-test/compiler_crashers/00066-diagnoseunknowntype.swift rename to validation-test/compiler_crashers_fixed/00066-diagnoseunknowntype.swift index d0e7a15bf4d17..62ddd0b087a69 100644 --- a/validation-test/compiler_crashers/00066-diagnoseunknowntype.swift +++ b/validation-test/compiler_crashers_fixed/00066-diagnoseunknowntype.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/00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift b/validation-test/compiler_crashers_fixed/00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift similarity index 85% rename from validation-test/compiler_crashers/00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift rename to validation-test/compiler_crashers_fixed/00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift index cb216dd77f33c..1ff17d237fd93 100644 --- a/validation-test/compiler_crashers/00211-swift-completegenerictyperesolver-resolvedependentmembertype.swift +++ b/validation-test/compiler_crashers_fixed/00211-swift-completegenerictyperesolver-resolvedependentmembertype.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/00318-swift-diagnosticengine-flushactivediagnostic.swift b/validation-test/compiler_crashers_fixed/00318-swift-diagnosticengine-flushactivediagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/00318-swift-diagnosticengine-flushactivediagnostic.swift rename to validation-test/compiler_crashers_fixed/00318-swift-diagnosticengine-flushactivediagnostic.swift index 8a052b41b0b76..b53f2657b5800 100644 --- a/validation-test/compiler_crashers/00318-swift-diagnosticengine-flushactivediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/00318-swift-diagnosticengine-flushactivediagnostic.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/00409-llvm-raw-fd-ostream-write-impl.swift b/validation-test/compiler_crashers_fixed/00409-llvm-raw-fd-ostream-write-impl.swift similarity index 81% rename from validation-test/compiler_crashers/00409-llvm-raw-fd-ostream-write-impl.swift rename to validation-test/compiler_crashers_fixed/00409-llvm-raw-fd-ostream-write-impl.swift index 752d0f60e24e5..9cd090f51bcb3 100644 --- a/validation-test/compiler_crashers/00409-llvm-raw-fd-ostream-write-impl.swift +++ b/validation-test/compiler_crashers_fixed/00409-llvm-raw-fd-ostream-write-impl.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/00492-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/00492-swift-metatypetype-get.swift similarity index 82% rename from validation-test/compiler_crashers/00492-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/00492-swift-metatypetype-get.swift index 27c50e26a215d..1af87aad815db 100644 --- a/validation-test/compiler_crashers/00492-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/00492-swift-metatypetype-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/00530-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/00530-swift-metatypetype-get.swift similarity index 87% rename from validation-test/compiler_crashers/00530-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/00530-swift-metatypetype-get.swift index 5e1dc63f7c093..8d9fce259fcfd 100644 --- a/validation-test/compiler_crashers/00530-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/00530-swift-metatypetype-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/00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift b/validation-test/compiler_crashers_fixed/00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift similarity index 82% rename from validation-test/compiler_crashers/00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift rename to validation-test/compiler_crashers_fixed/00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift index ccebdfa368b49..9bddc16aceceb 100644 --- a/validation-test/compiler_crashers/00539-swift-nominaltypedecl-getdeclaredtypeincontext.swift +++ b/validation-test/compiler_crashers_fixed/00539-swift-nominaltypedecl-getdeclaredtypeincontext.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/00626-swift-lexer-lexidentifier.swift b/validation-test/compiler_crashers_fixed/00626-swift-lexer-lexidentifier.swift similarity index 81% rename from validation-test/compiler_crashers/00626-swift-lexer-lexidentifier.swift rename to validation-test/compiler_crashers_fixed/00626-swift-lexer-lexidentifier.swift index cf0afd39e53bf..c3da82631019d 100644 --- a/validation-test/compiler_crashers/00626-swift-lexer-lexidentifier.swift +++ b/validation-test/compiler_crashers_fixed/00626-swift-lexer-lexidentifier.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/00637-swift-lexer-getlocforendoftoken.swift b/validation-test/compiler_crashers_fixed/00637-swift-lexer-getlocforendoftoken.swift similarity index 82% rename from validation-test/compiler_crashers/00637-swift-lexer-getlocforendoftoken.swift rename to validation-test/compiler_crashers_fixed/00637-swift-lexer-getlocforendoftoken.swift index 071c333603a2f..f1c725d361f84 100644 --- a/validation-test/compiler_crashers/00637-swift-lexer-getlocforendoftoken.swift +++ b/validation-test/compiler_crashers_fixed/00637-swift-lexer-getlocforendoftoken.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/00740-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/00740-swift-metatypetype-get.swift similarity index 88% rename from validation-test/compiler_crashers/00740-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/00740-swift-metatypetype-get.swift index 96d0c3c115882..491406c07804b 100644 --- a/validation-test/compiler_crashers/00740-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/00740-swift-metatypetype-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/00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift b/validation-test/compiler_crashers_fixed/00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift similarity index 85% rename from validation-test/compiler_crashers/00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift rename to validation-test/compiler_crashers_fixed/00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift index 4aa47855de579..726302e7fc3ef 100644 --- a/validation-test/compiler_crashers/00890-swift-completegenerictyperesolver-resolvedependentmembertype.swift +++ b/validation-test/compiler_crashers_fixed/00890-swift-completegenerictyperesolver-resolvedependentmembertype.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/01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift b/validation-test/compiler_crashers_fixed/01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift similarity index 85% rename from validation-test/compiler_crashers/01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift rename to validation-test/compiler_crashers_fixed/01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift index 016b29be8ad4e..d7e549e969f52 100644 --- a/validation-test/compiler_crashers/01035-swift-completegenerictyperesolver-resolvedependentmembertype.swift +++ b/validation-test/compiler_crashers_fixed/01035-swift-completegenerictyperesolver-resolvedependentmembertype.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/01085-swift-declcontext-lookupqualified.swift b/validation-test/compiler_crashers_fixed/01085-swift-declcontext-lookupqualified.swift similarity index 91% rename from validation-test/compiler_crashers/01085-swift-declcontext-lookupqualified.swift rename to validation-test/compiler_crashers_fixed/01085-swift-declcontext-lookupqualified.swift index 7e0b3eb5ec3ad..dda8468900b51 100644 --- a/validation-test/compiler_crashers/01085-swift-declcontext-lookupqualified.swift +++ b/validation-test/compiler_crashers_fixed/01085-swift-declcontext-lookupqualified.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/01268-swift-lexer-lexidentifier.swift b/validation-test/compiler_crashers_fixed/01268-swift-lexer-lexidentifier.swift similarity index 84% rename from validation-test/compiler_crashers/01268-swift-lexer-lexidentifier.swift rename to validation-test/compiler_crashers_fixed/01268-swift-lexer-lexidentifier.swift index 90795d69187d6..a465402f59f79 100644 --- a/validation-test/compiler_crashers/01268-swift-lexer-lexidentifier.swift +++ b/validation-test/compiler_crashers_fixed/01268-swift-lexer-lexidentifier.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/01277-diagnoseunknowntype.swift b/validation-test/compiler_crashers_fixed/01277-diagnoseunknowntype.swift similarity index 84% rename from validation-test/compiler_crashers/01277-diagnoseunknowntype.swift rename to validation-test/compiler_crashers_fixed/01277-diagnoseunknowntype.swift index 0290eece9d11d..16e0c97602c39 100644 --- a/validation-test/compiler_crashers/01277-diagnoseunknowntype.swift +++ b/validation-test/compiler_crashers_fixed/01277-diagnoseunknowntype.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/01908-std-function-func-mapsignaturetype.swift b/validation-test/compiler_crashers_fixed/01908-std-function-func-mapsignaturetype.swift similarity index 81% rename from validation-test/compiler_crashers/01908-std-function-func-mapsignaturetype.swift rename to validation-test/compiler_crashers_fixed/01908-std-function-func-mapsignaturetype.swift index 1731168c29767..c939b66bec774 100644 --- a/validation-test/compiler_crashers/01908-std-function-func-mapsignaturetype.swift +++ b/validation-test/compiler_crashers_fixed/01908-std-function-func-mapsignaturetype.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/06542-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/06542-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 81% rename from validation-test/compiler_crashers/06542-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/06542-swift-unqualifiedlookup-unqualifiedlookup.swift index 5cee52f89200d..d89f8416a4714 100644 --- a/validation-test/compiler_crashers/06542-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/06542-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) diff --git a/validation-test/compiler_crashers/09385-swift-structtype-get.swift b/validation-test/compiler_crashers_fixed/09385-swift-structtype-get.swift similarity index 82% rename from validation-test/compiler_crashers/09385-swift-structtype-get.swift rename to validation-test/compiler_crashers_fixed/09385-swift-structtype-get.swift index 8d99147e79d08..2aa7f3313d83d 100644 --- a/validation-test/compiler_crashers/09385-swift-structtype-get.swift +++ b/validation-test/compiler_crashers_fixed/09385-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/09650-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/09650-swift-typebase-getcanonicaltype.swift similarity index 80% rename from validation-test/compiler_crashers/09650-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/09650-swift-typebase-getcanonicaltype.swift index 7bf274b3aed7d..de500f1a155c1 100644 --- a/validation-test/compiler_crashers/09650-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/09650-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/13000-swift-constraints-constraintsystem-matchtypes.swift b/validation-test/compiler_crashers_fixed/13000-swift-constraints-constraintsystem-matchtypes.swift similarity index 83% rename from validation-test/compiler_crashers/13000-swift-constraints-constraintsystem-matchtypes.swift rename to validation-test/compiler_crashers_fixed/13000-swift-constraints-constraintsystem-matchtypes.swift index 6108474dc8c51..cae1998ebc9b3 100644 --- a/validation-test/compiler_crashers/13000-swift-constraints-constraintsystem-matchtypes.swift +++ b/validation-test/compiler_crashers_fixed/13000-swift-constraints-constraintsystem-matchtypes.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/13737-swift-availabilityattr-isunavailable.swift b/validation-test/compiler_crashers_fixed/13737-swift-availabilityattr-isunavailable.swift similarity index 81% rename from validation-test/compiler_crashers/13737-swift-availabilityattr-isunavailable.swift rename to validation-test/compiler_crashers_fixed/13737-swift-availabilityattr-isunavailable.swift index ee5d01c17c360..9fc24fada7e76 100644 --- a/validation-test/compiler_crashers/13737-swift-availabilityattr-isunavailable.swift +++ b/validation-test/compiler_crashers_fixed/13737-swift-availabilityattr-isunavailable.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/21847-llvm-foldingset-swift-tupletype-nodeequals.swift b/validation-test/compiler_crashers_fixed/21847-llvm-foldingset-swift-tupletype-nodeequals.swift similarity index 82% rename from validation-test/compiler_crashers/21847-llvm-foldingset-swift-tupletype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/21847-llvm-foldingset-swift-tupletype-nodeequals.swift index 0247668e71664..03b508756eebc 100644 --- a/validation-test/compiler_crashers/21847-llvm-foldingset-swift-tupletype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/21847-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/22582-swift-clangmoduleunit-getimportedmodules.swift b/validation-test/compiler_crashers_fixed/22582-swift-clangmoduleunit-getimportedmodules.swift similarity index 83% rename from validation-test/compiler_crashers/22582-swift-clangmoduleunit-getimportedmodules.swift rename to validation-test/compiler_crashers_fixed/22582-swift-clangmoduleunit-getimportedmodules.swift index 42a7275b29fd1..7c7fb547e7bd7 100644 --- a/validation-test/compiler_crashers/22582-swift-clangmoduleunit-getimportedmodules.swift +++ b/validation-test/compiler_crashers_fixed/22582-swift-clangmoduleunit-getimportedmodules.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/23974-swift-declname-printpretty.swift b/validation-test/compiler_crashers_fixed/23974-swift-declname-printpretty.swift similarity index 79% rename from validation-test/compiler_crashers/23974-swift-declname-printpretty.swift rename to validation-test/compiler_crashers_fixed/23974-swift-declname-printpretty.swift index 66243702b8bf3..bb209ee33937b 100644 --- a/validation-test/compiler_crashers/23974-swift-declname-printpretty.swift +++ b/validation-test/compiler_crashers_fixed/23974-swift-declname-printpretty.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/24232-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/24232-swift-lexer-leximpl.swift similarity index 79% rename from validation-test/compiler_crashers/24232-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/24232-swift-lexer-leximpl.swift index 367e3fc72d456..b5a5e2a89c284 100644 --- a/validation-test/compiler_crashers/24232-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/24232-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/24440-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/24440-swift-typechecker-coercepatterntotype.swift similarity index 81% rename from validation-test/compiler_crashers/24440-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/24440-swift-typechecker-coercepatterntotype.swift index 8b5c2adb5a6b1..5a175975498c5 100644 --- a/validation-test/compiler_crashers/24440-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/24440-swift-typechecker-coercepatterntotype.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/25342-swift-sourcemanager-getbytedistance.swift b/validation-test/compiler_crashers_fixed/25342-swift-sourcemanager-getbytedistance.swift similarity index 79% rename from validation-test/compiler_crashers/25342-swift-sourcemanager-getbytedistance.swift rename to validation-test/compiler_crashers_fixed/25342-swift-sourcemanager-getbytedistance.swift index ac43c86a8f295..ee16c227e6b63 100644 --- a/validation-test/compiler_crashers/25342-swift-sourcemanager-getbytedistance.swift +++ b/validation-test/compiler_crashers_fixed/25342-swift-sourcemanager-getbytedistance.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/25449-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/25449-swift-lexer-leximpl.swift similarity index 78% rename from validation-test/compiler_crashers/25449-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/25449-swift-lexer-leximpl.swift index 47a2313c86ace..b4797cd601b40 100644 --- a/validation-test/compiler_crashers/25449-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/25449-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/25451-swift-scopeinfo-addtoscope.swift b/validation-test/compiler_crashers_fixed/25451-swift-scopeinfo-addtoscope.swift similarity index 78% rename from validation-test/compiler_crashers/25451-swift-scopeinfo-addtoscope.swift rename to validation-test/compiler_crashers_fixed/25451-swift-scopeinfo-addtoscope.swift index 8a5346b9ee84f..4cc0edd04299c 100644 --- a/validation-test/compiler_crashers/25451-swift-scopeinfo-addtoscope.swift +++ b/validation-test/compiler_crashers_fixed/25451-swift-scopeinfo-addtoscope.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/25459-swift-declcontext-lookupqualified.swift b/validation-test/compiler_crashers_fixed/25459-swift-declcontext-lookupqualified.swift similarity index 79% rename from validation-test/compiler_crashers/25459-swift-declcontext-lookupqualified.swift rename to validation-test/compiler_crashers_fixed/25459-swift-declcontext-lookupqualified.swift index 841fff8f25f80..62857ae056e0a 100644 --- a/validation-test/compiler_crashers/25459-swift-declcontext-lookupqualified.swift +++ b/validation-test/compiler_crashers_fixed/25459-swift-declcontext-lookupqualified.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/25460-swift-expr-walk.swift b/validation-test/compiler_crashers_fixed/25460-swift-expr-walk.swift similarity index 80% rename from validation-test/compiler_crashers/25460-swift-expr-walk.swift rename to validation-test/compiler_crashers_fixed/25460-swift-expr-walk.swift index 62885a4426be0..d54f2ba8f774c 100644 --- a/validation-test/compiler_crashers/25460-swift-expr-walk.swift +++ b/validation-test/compiler_crashers_fixed/25460-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) diff --git a/validation-test/compiler_crashers/25462-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/25462-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 79% rename from validation-test/compiler_crashers/25462-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/25462-swift-printingdiagnosticconsumer-handlediagnostic.swift index 9812ca56cf989..3b6ca7c660344 100644 --- a/validation-test/compiler_crashers/25462-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/25462-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) diff --git a/validation-test/compiler_crashers/25465-swift-namelookup-lookupinmodule.swift b/validation-test/compiler_crashers_fixed/25465-swift-namelookup-lookupinmodule.swift similarity index 79% rename from validation-test/compiler_crashers/25465-swift-namelookup-lookupinmodule.swift rename to validation-test/compiler_crashers_fixed/25465-swift-namelookup-lookupinmodule.swift index 08eccec1c4de9..c3fd75e43cbb1 100644 --- a/validation-test/compiler_crashers/25465-swift-namelookup-lookupinmodule.swift +++ b/validation-test/compiler_crashers_fixed/25465-swift-namelookup-lookupinmodule.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/25474-swift-parser-diagnose.swift b/validation-test/compiler_crashers_fixed/25474-swift-parser-diagnose.swift similarity index 79% rename from validation-test/compiler_crashers/25474-swift-parser-diagnose.swift rename to validation-test/compiler_crashers_fixed/25474-swift-parser-diagnose.swift index 7a61da2ba2043..846401d06ae0d 100644 --- a/validation-test/compiler_crashers/25474-swift-parser-diagnose.swift +++ b/validation-test/compiler_crashers_fixed/25474-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/25481-swift-modulefile-getimportedmodules.swift b/validation-test/compiler_crashers_fixed/25481-swift-modulefile-getimportedmodules.swift similarity index 79% rename from validation-test/compiler_crashers/25481-swift-modulefile-getimportedmodules.swift rename to validation-test/compiler_crashers_fixed/25481-swift-modulefile-getimportedmodules.swift index 1552326f86457..1f4113dc4166d 100644 --- a/validation-test/compiler_crashers/25481-swift-modulefile-getimportedmodules.swift +++ b/validation-test/compiler_crashers_fixed/25481-swift-modulefile-getimportedmodules.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/25485-swift-patternbindingdecl-setpattern.swift b/validation-test/compiler_crashers_fixed/25485-swift-patternbindingdecl-setpattern.swift similarity index 83% rename from validation-test/compiler_crashers/25485-swift-patternbindingdecl-setpattern.swift rename to validation-test/compiler_crashers_fixed/25485-swift-patternbindingdecl-setpattern.swift index 0708555b4d9ca..8e020e87e3c58 100644 --- a/validation-test/compiler_crashers/25485-swift-patternbindingdecl-setpattern.swift +++ b/validation-test/compiler_crashers_fixed/25485-swift-patternbindingdecl-setpattern.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/25514-bool.swift b/validation-test/compiler_crashers_fixed/25514-bool.swift similarity index 78% rename from validation-test/compiler_crashers/25514-bool.swift rename to validation-test/compiler_crashers_fixed/25514-bool.swift index 28d9a86850449..b29f3cbe99aed 100644 --- a/validation-test/compiler_crashers/25514-bool.swift +++ b/validation-test/compiler_crashers_fixed/25514-bool.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/25516-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/25516-swift-diagnosticengine-emitdiagnostic.swift similarity index 79% rename from validation-test/compiler_crashers/25516-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/25516-swift-diagnosticengine-emitdiagnostic.swift index 53b7428b2f8b8..4644d5c6ff7f7 100644 --- a/validation-test/compiler_crashers/25516-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/25516-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/25518-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/25518-swift-lexer-leximpl.swift similarity index 78% rename from validation-test/compiler_crashers/25518-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/25518-swift-lexer-leximpl.swift index 0acc8b7e9b611..6a1d1ac34fb11 100644 --- a/validation-test/compiler_crashers/25518-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/25518-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/25531-swift-abstractclosureexpr-setparams.swift b/validation-test/compiler_crashers_fixed/25531-swift-abstractclosureexpr-setparams.swift similarity index 83% rename from validation-test/compiler_crashers/25531-swift-abstractclosureexpr-setparams.swift rename to validation-test/compiler_crashers_fixed/25531-swift-abstractclosureexpr-setparams.swift index da8feda5c7600..dd3c508c7a966 100644 --- a/validation-test/compiler_crashers/25531-swift-abstractclosureexpr-setparams.swift +++ b/validation-test/compiler_crashers_fixed/25531-swift-abstractclosureexpr-setparams.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/25534-swift-archetypebuilder-potentialarchetype-gettype.swift b/validation-test/compiler_crashers_fixed/25534-swift-archetypebuilder-potentialarchetype-gettype.swift similarity index 80% rename from validation-test/compiler_crashers/25534-swift-archetypebuilder-potentialarchetype-gettype.swift rename to validation-test/compiler_crashers_fixed/25534-swift-archetypebuilder-potentialarchetype-gettype.swift index 90e3398e34ef6..16b7bf2963ea6 100644 --- a/validation-test/compiler_crashers/25534-swift-archetypebuilder-potentialarchetype-gettype.swift +++ b/validation-test/compiler_crashers_fixed/25534-swift-archetypebuilder-potentialarchetype-gettype.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/25541-swift-lexer-getlocforendoftoken.swift b/validation-test/compiler_crashers_fixed/25541-swift-lexer-getlocforendoftoken.swift similarity index 78% rename from validation-test/compiler_crashers/25541-swift-lexer-getlocforendoftoken.swift rename to validation-test/compiler_crashers_fixed/25541-swift-lexer-getlocforendoftoken.swift index 549789735dbb1..0d7dad31b060d 100644 --- a/validation-test/compiler_crashers/25541-swift-lexer-getlocforendoftoken.swift +++ b/validation-test/compiler_crashers_fixed/25541-swift-lexer-getlocforendoftoken.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/25543-swift-typechecker-typecheckexpression.swift b/validation-test/compiler_crashers_fixed/25543-swift-typechecker-typecheckexpression.swift similarity index 79% rename from validation-test/compiler_crashers/25543-swift-typechecker-typecheckexpression.swift rename to validation-test/compiler_crashers_fixed/25543-swift-typechecker-typecheckexpression.swift index f515e4873a5fb..b02cb9eefadd3 100644 --- a/validation-test/compiler_crashers/25543-swift-typechecker-typecheckexpression.swift +++ b/validation-test/compiler_crashers_fixed/25543-swift-typechecker-typecheckexpression.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/25565-swift-modulefile-loadextensions.swift b/validation-test/compiler_crashers_fixed/25565-swift-modulefile-loadextensions.swift similarity index 79% rename from validation-test/compiler_crashers/25565-swift-modulefile-loadextensions.swift rename to validation-test/compiler_crashers_fixed/25565-swift-modulefile-loadextensions.swift index 5ee08e74e1f7b..58f591494d0d9 100644 --- a/validation-test/compiler_crashers/25565-swift-modulefile-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/25565-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/25570-std-function-func-mapsignaturetype.swift b/validation-test/compiler_crashers_fixed/25570-std-function-func-mapsignaturetype.swift similarity index 80% rename from validation-test/compiler_crashers/25570-std-function-func-mapsignaturetype.swift rename to validation-test/compiler_crashers_fixed/25570-std-function-func-mapsignaturetype.swift index c65b817d20b03..f638f1272273e 100644 --- a/validation-test/compiler_crashers/25570-std-function-func-mapsignaturetype.swift +++ b/validation-test/compiler_crashers_fixed/25570-std-function-func-mapsignaturetype.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/25575-swift-streamprinter-printtext.swift b/validation-test/compiler_crashers_fixed/25575-swift-streamprinter-printtext.swift similarity index 81% rename from validation-test/compiler_crashers/25575-swift-streamprinter-printtext.swift rename to validation-test/compiler_crashers_fixed/25575-swift-streamprinter-printtext.swift index ea8d9e523e08b..4d89e385ba3a0 100644 --- a/validation-test/compiler_crashers/25575-swift-streamprinter-printtext.swift +++ b/validation-test/compiler_crashers_fixed/25575-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/25599-swift-iterabledeclcontext-getmembers.swift b/validation-test/compiler_crashers_fixed/25599-swift-iterabledeclcontext-getmembers.swift similarity index 85% rename from validation-test/compiler_crashers/25599-swift-iterabledeclcontext-getmembers.swift rename to validation-test/compiler_crashers_fixed/25599-swift-iterabledeclcontext-getmembers.swift index b529d6ba2da76..a03b6c85bd76b 100644 --- a/validation-test/compiler_crashers/25599-swift-iterabledeclcontext-getmembers.swift +++ b/validation-test/compiler_crashers_fixed/25599-swift-iterabledeclcontext-getmembers.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/25600-swift-declname-printpretty.swift b/validation-test/compiler_crashers_fixed/25600-swift-declname-printpretty.swift similarity index 79% rename from validation-test/compiler_crashers/25600-swift-declname-printpretty.swift rename to validation-test/compiler_crashers_fixed/25600-swift-declname-printpretty.swift index 564ff3241777a..52f0959e8d4e9 100644 --- a/validation-test/compiler_crashers/25600-swift-declname-printpretty.swift +++ b/validation-test/compiler_crashers_fixed/25600-swift-declname-printpretty.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/25601-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/25601-resolveidenttypecomponent.swift similarity index 79% rename from validation-test/compiler_crashers/25601-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/25601-resolveidenttypecomponent.swift index 7d6aac1c37a0d..825f711867d94 100644 --- a/validation-test/compiler_crashers/25601-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/25601-resolveidenttypecomponent.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/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift b/validation-test/compiler_crashers_fixed/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift similarity index 78% rename from validation-test/compiler_crashers/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift rename to validation-test/compiler_crashers_fixed/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift index 2e60d4818d666..fad37243386dd 100644 --- a/validation-test/compiler_crashers/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift +++ b/validation-test/compiler_crashers_fixed/25605-llvm-smallvectorimpl-swift-diagnosticargument-operator.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/25609-swift-inouttype-get.swift b/validation-test/compiler_crashers_fixed/25609-swift-inouttype-get.swift similarity index 79% rename from validation-test/compiler_crashers/25609-swift-inouttype-get.swift rename to validation-test/compiler_crashers_fixed/25609-swift-inouttype-get.swift index e19240f1043be..791eb49db7d1a 100644 --- a/validation-test/compiler_crashers/25609-swift-inouttype-get.swift +++ b/validation-test/compiler_crashers_fixed/25609-swift-inouttype-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/25610-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/25610-swift-metatypetype-get.swift similarity index 79% rename from validation-test/compiler_crashers/25610-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/25610-swift-metatypetype-get.swift index 98acab898f486..987ce85d8483d 100644 --- a/validation-test/compiler_crashers/25610-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/25610-swift-metatypetype-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/25613-llvm-foldingset-swift-classtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/25613-llvm-foldingset-swift-classtype-nodeequals.swift similarity index 79% rename from validation-test/compiler_crashers/25613-llvm-foldingset-swift-classtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/25613-llvm-foldingset-swift-classtype-nodeequals.swift index f8293a8718834..bc5c94d333d57 100644 --- a/validation-test/compiler_crashers/25613-llvm-foldingset-swift-classtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/25613-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) diff --git a/validation-test/compiler_crashers/25618-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/25618-swift-constraints-constraintsystem-simplifytype.swift similarity index 79% rename from validation-test/compiler_crashers/25618-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/25618-swift-constraints-constraintsystem-simplifytype.swift index 88e6ed1c94fb7..640c20304eef6 100644 --- a/validation-test/compiler_crashers/25618-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/25618-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/25643-swift-markasobjc.swift b/validation-test/compiler_crashers_fixed/25643-swift-markasobjc.swift similarity index 78% rename from validation-test/compiler_crashers/25643-swift-markasobjc.swift rename to validation-test/compiler_crashers_fixed/25643-swift-markasobjc.swift index 9d730aa89a78b..6723e39fb17d5 100644 --- a/validation-test/compiler_crashers/25643-swift-markasobjc.swift +++ b/validation-test/compiler_crashers_fixed/25643-swift-markasobjc.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/25699-swift-sourcefile-getcache.swift b/validation-test/compiler_crashers_fixed/25699-swift-sourcefile-getcache.swift similarity index 79% rename from validation-test/compiler_crashers/25699-swift-sourcefile-getcache.swift rename to validation-test/compiler_crashers_fixed/25699-swift-sourcefile-getcache.swift index f6b66dc614a63..b01631f6ac2de 100644 --- a/validation-test/compiler_crashers/25699-swift-sourcefile-getcache.swift +++ b/validation-test/compiler_crashers_fixed/25699-swift-sourcefile-getcache.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/25736-swift-lexer-lexidentifier.swift b/validation-test/compiler_crashers_fixed/25736-swift-lexer-lexidentifier.swift similarity index 79% rename from validation-test/compiler_crashers/25736-swift-lexer-lexidentifier.swift rename to validation-test/compiler_crashers_fixed/25736-swift-lexer-lexidentifier.swift index 51d9b85e3d41b..8c224664566b7 100644 --- a/validation-test/compiler_crashers/25736-swift-lexer-lexidentifier.swift +++ b/validation-test/compiler_crashers_fixed/25736-swift-lexer-lexidentifier.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/25770-llvm-foldingset-swift-tupletype-nodeequals.swift b/validation-test/compiler_crashers_fixed/25770-llvm-foldingset-swift-tupletype-nodeequals.swift similarity index 79% rename from validation-test/compiler_crashers/25770-llvm-foldingset-swift-tupletype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/25770-llvm-foldingset-swift-tupletype-nodeequals.swift index 7055c7f10f96b..d7053db680b6e 100644 --- a/validation-test/compiler_crashers/25770-llvm-foldingset-swift-tupletype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/25770-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/25806-swift-derivedfileunit-lookupvalue.swift b/validation-test/compiler_crashers_fixed/25806-swift-derivedfileunit-lookupvalue.swift similarity index 78% rename from validation-test/compiler_crashers/25806-swift-derivedfileunit-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/25806-swift-derivedfileunit-lookupvalue.swift index 8ddf051e84ff2..dae51c69fbaf3 100644 --- a/validation-test/compiler_crashers/25806-swift-derivedfileunit-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/25806-swift-derivedfileunit-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/25809-swift-sourcemanager-extracttext.swift b/validation-test/compiler_crashers_fixed/25809-swift-sourcemanager-extracttext.swift similarity index 82% rename from validation-test/compiler_crashers/25809-swift-sourcemanager-extracttext.swift rename to validation-test/compiler_crashers_fixed/25809-swift-sourcemanager-extracttext.swift index 4f3fdc81d313c..85bd5641bf441 100644 --- a/validation-test/compiler_crashers/25809-swift-sourcemanager-extracttext.swift +++ b/validation-test/compiler_crashers_fixed/25809-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) diff --git a/validation-test/compiler_crashers/25822-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/25822-swift-typechecker-coercepatterntotype.swift similarity index 81% rename from validation-test/compiler_crashers/25822-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/25822-swift-typechecker-coercepatterntotype.swift index 6db18e34272e7..44d8001932149 100644 --- a/validation-test/compiler_crashers/25822-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/25822-swift-typechecker-coercepatterntotype.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/25832-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/25832-resolveidenttypecomponent.swift similarity index 84% rename from validation-test/compiler_crashers/25832-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/25832-resolveidenttypecomponent.swift index ccf4809bfd9ac..3d22cf0be81a2 100644 --- a/validation-test/compiler_crashers/25832-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/25832-resolveidenttypecomponent.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/25835-swift-genericsignature-profile.swift b/validation-test/compiler_crashers_fixed/25835-swift-genericsignature-profile.swift similarity index 80% rename from validation-test/compiler_crashers/25835-swift-genericsignature-profile.swift rename to validation-test/compiler_crashers_fixed/25835-swift-genericsignature-profile.swift index ea18a24879103..bcc55c50b5ef5 100644 --- a/validation-test/compiler_crashers/25835-swift-genericsignature-profile.swift +++ b/validation-test/compiler_crashers_fixed/25835-swift-genericsignature-profile.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/25836-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/25836-resolveidenttypecomponent.swift similarity index 78% rename from validation-test/compiler_crashers/25836-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/25836-resolveidenttypecomponent.swift index 2faab60cdb830..741e76076ee54 100644 --- a/validation-test/compiler_crashers/25836-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/25836-resolveidenttypecomponent.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/25960-std-function-func-setboundvarstypeerror.swift b/validation-test/compiler_crashers_fixed/25960-std-function-func-setboundvarstypeerror.swift similarity index 80% rename from validation-test/compiler_crashers/25960-std-function-func-setboundvarstypeerror.swift rename to validation-test/compiler_crashers_fixed/25960-std-function-func-setboundvarstypeerror.swift index 2fece60572b7d..31ed43ed023b7 100644 --- a/validation-test/compiler_crashers/25960-std-function-func-setboundvarstypeerror.swift +++ b/validation-test/compiler_crashers_fixed/25960-std-function-func-setboundvarstypeerror.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/26006-swift-typechecker-checkdeclarationavailability.swift b/validation-test/compiler_crashers_fixed/26006-swift-typechecker-checkdeclarationavailability.swift similarity index 81% rename from validation-test/compiler_crashers/26006-swift-typechecker-checkdeclarationavailability.swift rename to validation-test/compiler_crashers_fixed/26006-swift-typechecker-checkdeclarationavailability.swift index 999be39c7f4dd..7df5b3e889fbe 100644 --- a/validation-test/compiler_crashers/26006-swift-typechecker-checkdeclarationavailability.swift +++ b/validation-test/compiler_crashers_fixed/26006-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) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26029-std-function-func-swift-type-subst.swift b/validation-test/compiler_crashers_fixed/26029-std-function-func-swift-type-subst.swift similarity index 81% rename from validation-test/compiler_crashers/26029-std-function-func-swift-type-subst.swift rename to validation-test/compiler_crashers_fixed/26029-std-function-func-swift-type-subst.swift index e31cbca75521d..0e2b735a20af4 100644 --- a/validation-test/compiler_crashers/26029-std-function-func-swift-type-subst.swift +++ b/validation-test/compiler_crashers_fixed/26029-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/26061-swift-removeshadoweddecls.swift b/validation-test/compiler_crashers_fixed/26061-swift-removeshadoweddecls.swift similarity index 81% rename from validation-test/compiler_crashers/26061-swift-removeshadoweddecls.swift rename to validation-test/compiler_crashers_fixed/26061-swift-removeshadoweddecls.swift index 92c6d0b99fff3..61880844f4887 100644 --- a/validation-test/compiler_crashers/26061-swift-removeshadoweddecls.swift +++ b/validation-test/compiler_crashers_fixed/26061-swift-removeshadoweddecls.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/26076-swift-parser-skipsingle.swift b/validation-test/compiler_crashers_fixed/26076-swift-parser-skipsingle.swift similarity index 83% rename from validation-test/compiler_crashers/26076-swift-parser-skipsingle.swift rename to validation-test/compiler_crashers_fixed/26076-swift-parser-skipsingle.swift index 43dcb81b12cac..9d8ba081c08a8 100644 --- a/validation-test/compiler_crashers/26076-swift-parser-skipsingle.swift +++ b/validation-test/compiler_crashers_fixed/26076-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/26079-swift-parser-parseexprpostfix.swift b/validation-test/compiler_crashers_fixed/26079-swift-parser-parseexprpostfix.swift similarity index 79% rename from validation-test/compiler_crashers/26079-swift-parser-parseexprpostfix.swift rename to validation-test/compiler_crashers_fixed/26079-swift-parser-parseexprpostfix.swift index 74be6532ea403..b36e54d783e50 100644 --- a/validation-test/compiler_crashers/26079-swift-parser-parseexprpostfix.swift +++ b/validation-test/compiler_crashers_fixed/26079-swift-parser-parseexprpostfix.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/26123-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/26123-swift-metatypetype-get.swift similarity index 79% rename from validation-test/compiler_crashers/26123-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/26123-swift-metatypetype-get.swift index 92458d0254f0a..acd90001d4af9 100644 --- a/validation-test/compiler_crashers/26123-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/26123-swift-metatypetype-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/26157-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/26157-resolveidenttypecomponent.swift similarity index 80% rename from validation-test/compiler_crashers/26157-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/26157-resolveidenttypecomponent.swift index db91b3a2ce801..cd5bd6dbe3ca0 100644 --- a/validation-test/compiler_crashers/26157-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/26157-resolveidenttypecomponent.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/26159-llvm-foldingset-swift-structtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/26159-llvm-foldingset-swift-structtype-nodeequals.swift similarity index 79% rename from validation-test/compiler_crashers/26159-llvm-foldingset-swift-structtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/26159-llvm-foldingset-swift-structtype-nodeequals.swift index bc8daa3c739f5..ccebc5b8d2c99 100644 --- a/validation-test/compiler_crashers/26159-llvm-foldingset-swift-structtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/26159-llvm-foldingset-swift-structtype-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/26180-llvm-foldingset-swift-tupletype-nodeequals.swift b/validation-test/compiler_crashers_fixed/26180-llvm-foldingset-swift-tupletype-nodeequals.swift similarity index 79% rename from validation-test/compiler_crashers/26180-llvm-foldingset-swift-tupletype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/26180-llvm-foldingset-swift-tupletype-nodeequals.swift index 58b9ae53f5144..ef511469566b8 100644 --- a/validation-test/compiler_crashers/26180-llvm-foldingset-swift-tupletype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/26180-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) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26184-llvm-yaml-input-preflightkey.swift b/validation-test/compiler_crashers_fixed/26184-llvm-yaml-input-preflightkey.swift similarity index 84% rename from validation-test/compiler_crashers/26184-llvm-yaml-input-preflightkey.swift rename to validation-test/compiler_crashers_fixed/26184-llvm-yaml-input-preflightkey.swift index 74dfba815677a..caa172f64df90 100644 --- a/validation-test/compiler_crashers/26184-llvm-yaml-input-preflightkey.swift +++ b/validation-test/compiler_crashers_fixed/26184-llvm-yaml-input-preflightkey.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/26194-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/26194-swift-constraints-constraintsystem-simplifytype.swift similarity index 79% rename from validation-test/compiler_crashers/26194-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/26194-swift-constraints-constraintsystem-simplifytype.swift index 4a11a61ecfee3..f183a5a259820 100644 --- a/validation-test/compiler_crashers/26194-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/26194-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) // Test case found by fuzzing diff --git a/validation-test/compiler_crashers/26222-swift-genericfunctiontype-get.swift b/validation-test/compiler_crashers_fixed/26222-swift-genericfunctiontype-get.swift similarity index 80% rename from validation-test/compiler_crashers/26222-swift-genericfunctiontype-get.swift rename to validation-test/compiler_crashers_fixed/26222-swift-genericfunctiontype-get.swift index cac9e57ce643c..65722f311d652 100644 --- a/validation-test/compiler_crashers/26222-swift-genericfunctiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/26222-swift-genericfunctiontype-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/26235-swift-modulefile-getimportedmodules.swift b/validation-test/compiler_crashers_fixed/26235-swift-modulefile-getimportedmodules.swift similarity index 79% rename from validation-test/compiler_crashers/26235-swift-modulefile-getimportedmodules.swift rename to validation-test/compiler_crashers_fixed/26235-swift-modulefile-getimportedmodules.swift index 72cc74c8ff63e..40a86640b2cf5 100644 --- a/validation-test/compiler_crashers/26235-swift-modulefile-getimportedmodules.swift +++ b/validation-test/compiler_crashers_fixed/26235-swift-modulefile-getimportedmodules.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/26386-swift-typevisitor.swift b/validation-test/compiler_crashers_fixed/26386-swift-typevisitor.swift similarity index 79% rename from validation-test/compiler_crashers/26386-swift-typevisitor.swift rename to validation-test/compiler_crashers_fixed/26386-swift-typevisitor.swift index ab1b37249fa02..a4133e0116b86 100644 --- a/validation-test/compiler_crashers/26386-swift-typevisitor.swift +++ b/validation-test/compiler_crashers_fixed/26386-swift-typevisitor.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/26643-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/26643-resolveidenttypecomponent.swift similarity index 79% rename from validation-test/compiler_crashers/26643-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/26643-resolveidenttypecomponent.swift index 177df443aef8c..1dd64082ce254 100644 --- a/validation-test/compiler_crashers/26643-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/26643-resolveidenttypecomponent.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/26653-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/26653-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 79% rename from validation-test/compiler_crashers/26653-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/26653-swift-printingdiagnosticconsumer-handlediagnostic.swift index 7a636003fb8df..cf261210bfd18 100644 --- a/validation-test/compiler_crashers/26653-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26653-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/26661-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/26661-swift-typechecker-coercepatterntotype.swift similarity index 79% rename from validation-test/compiler_crashers/26661-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/26661-swift-typechecker-coercepatterntotype.swift index e69c1b0509e94..35a789ee7b03c 100644 --- a/validation-test/compiler_crashers/26661-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/26661-swift-typechecker-coercepatterntotype.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/26678-swift-typechecker-overapproximateosversionsatlocation.swift b/validation-test/compiler_crashers_fixed/26678-swift-typechecker-overapproximateosversionsatlocation.swift similarity index 80% rename from validation-test/compiler_crashers/26678-swift-typechecker-overapproximateosversionsatlocation.swift rename to validation-test/compiler_crashers_fixed/26678-swift-typechecker-overapproximateosversionsatlocation.swift index 97b2213171fca..f0fa166a4e18a 100644 --- a/validation-test/compiler_crashers/26678-swift-typechecker-overapproximateosversionsatlocation.swift +++ b/validation-test/compiler_crashers_fixed/26678-swift-typechecker-overapproximateosversionsatlocation.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/26687-bool.swift b/validation-test/compiler_crashers_fixed/26687-bool.swift similarity index 78% rename from validation-test/compiler_crashers/26687-bool.swift rename to validation-test/compiler_crashers_fixed/26687-bool.swift index b25911e2a6ec9..04d61f9d8149c 100644 --- a/validation-test/compiler_crashers/26687-bool.swift +++ b/validation-test/compiler_crashers_fixed/26687-bool.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/26691-swift-serialization-serializer-writedecl.swift b/validation-test/compiler_crashers_fixed/26691-swift-serialization-serializer-writedecl.swift similarity index 82% rename from validation-test/compiler_crashers/26691-swift-serialization-serializer-writedecl.swift rename to validation-test/compiler_crashers_fixed/26691-swift-serialization-serializer-writedecl.swift index 1b8f6f80058ea..648ea5570698b 100644 --- a/validation-test/compiler_crashers/26691-swift-serialization-serializer-writedecl.swift +++ b/validation-test/compiler_crashers_fixed/26691-swift-serialization-serializer-writedecl.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/26692-swift-astcontext-getloadedmodule.swift b/validation-test/compiler_crashers_fixed/26692-swift-astcontext-getloadedmodule.swift similarity index 81% rename from validation-test/compiler_crashers/26692-swift-astcontext-getloadedmodule.swift rename to validation-test/compiler_crashers_fixed/26692-swift-astcontext-getloadedmodule.swift index 542a87a342701..6ba34da1b9624 100644 --- a/validation-test/compiler_crashers/26692-swift-astcontext-getloadedmodule.swift +++ b/validation-test/compiler_crashers_fixed/26692-swift-astcontext-getloadedmodule.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/26704-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/26704-swift-substitutedtype-get.swift similarity index 79% rename from validation-test/compiler_crashers/26704-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/26704-swift-substitutedtype-get.swift index 9e80ca0af0371..ea7232fce005e 100644 --- a/validation-test/compiler_crashers/26704-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/26704-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/26713-swift-removeshadoweddecls.swift b/validation-test/compiler_crashers_fixed/26713-swift-removeshadoweddecls.swift similarity index 80% rename from validation-test/compiler_crashers/26713-swift-removeshadoweddecls.swift rename to validation-test/compiler_crashers_fixed/26713-swift-removeshadoweddecls.swift index 5896ba122f29a..debefe886e887 100644 --- a/validation-test/compiler_crashers/26713-swift-removeshadoweddecls.swift +++ b/validation-test/compiler_crashers_fixed/26713-swift-removeshadoweddecls.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/26718-swift-parser-parsedeclvar.swift b/validation-test/compiler_crashers_fixed/26718-swift-parser-parsedeclvar.swift similarity index 78% rename from validation-test/compiler_crashers/26718-swift-parser-parsedeclvar.swift rename to validation-test/compiler_crashers_fixed/26718-swift-parser-parsedeclvar.swift index 5a08356635831..5783b1bae8da0 100644 --- a/validation-test/compiler_crashers/26718-swift-parser-parsedeclvar.swift +++ b/validation-test/compiler_crashers_fixed/26718-swift-parser-parsedeclvar.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/26732-std-function-func-swift-type-subst.swift b/validation-test/compiler_crashers_fixed/26732-std-function-func-swift-type-subst.swift similarity index 79% rename from validation-test/compiler_crashers/26732-std-function-func-swift-type-subst.swift rename to validation-test/compiler_crashers_fixed/26732-std-function-func-swift-type-subst.swift index a7e2b0ebd2bdc..f127ac8abab9a 100644 --- a/validation-test/compiler_crashers/26732-std-function-func-swift-type-subst.swift +++ b/validation-test/compiler_crashers_fixed/26732-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/26752-swift-typeloc-iserror.swift b/validation-test/compiler_crashers_fixed/26752-swift-typeloc-iserror.swift similarity index 82% rename from validation-test/compiler_crashers/26752-swift-typeloc-iserror.swift rename to validation-test/compiler_crashers_fixed/26752-swift-typeloc-iserror.swift index 9ad6458148271..9472699869801 100644 --- a/validation-test/compiler_crashers/26752-swift-typeloc-iserror.swift +++ b/validation-test/compiler_crashers_fixed/26752-swift-typeloc-iserror.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/26753-swift-parser-parsegenericwhereclause.swift b/validation-test/compiler_crashers_fixed/26753-swift-parser-parsegenericwhereclause.swift similarity index 79% rename from validation-test/compiler_crashers/26753-swift-parser-parsegenericwhereclause.swift rename to validation-test/compiler_crashers_fixed/26753-swift-parser-parsegenericwhereclause.swift index 2d09dbf9b7a51..3a75311349fd8 100644 --- a/validation-test/compiler_crashers/26753-swift-parser-parsegenericwhereclause.swift +++ b/validation-test/compiler_crashers_fixed/26753-swift-parser-parsegenericwhereclause.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/26763-swift-typechecker-overapproximateosversionsatlocation.swift b/validation-test/compiler_crashers_fixed/26763-swift-typechecker-overapproximateosversionsatlocation.swift similarity index 79% rename from validation-test/compiler_crashers/26763-swift-typechecker-overapproximateosversionsatlocation.swift rename to validation-test/compiler_crashers_fixed/26763-swift-typechecker-overapproximateosversionsatlocation.swift index a8077cc1f3851..edb5479e5fe97 100644 --- a/validation-test/compiler_crashers/26763-swift-typechecker-overapproximateosversionsatlocation.swift +++ b/validation-test/compiler_crashers_fixed/26763-swift-typechecker-overapproximateosversionsatlocation.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/26818-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/26818-swift-typechecker-coercepatterntotype.swift similarity index 81% rename from validation-test/compiler_crashers/26818-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/26818-swift-typechecker-coercepatterntotype.swift index 2f0297704b6de..9177353ded113 100644 --- a/validation-test/compiler_crashers/26818-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/26818-swift-typechecker-coercepatterntotype.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/26822-swift-modulefile-getdecl.swift b/validation-test/compiler_crashers_fixed/26822-swift-modulefile-getdecl.swift similarity index 80% rename from validation-test/compiler_crashers/26822-swift-modulefile-getdecl.swift rename to validation-test/compiler_crashers_fixed/26822-swift-modulefile-getdecl.swift index e8468c75feed7..cd77414cef5d9 100644 --- a/validation-test/compiler_crashers/26822-swift-modulefile-getdecl.swift +++ b/validation-test/compiler_crashers_fixed/26822-swift-modulefile-getdecl.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/26825-std-function-func-mapsignaturetype.swift b/validation-test/compiler_crashers_fixed/26825-std-function-func-mapsignaturetype.swift similarity index 80% rename from validation-test/compiler_crashers/26825-std-function-func-mapsignaturetype.swift rename to validation-test/compiler_crashers_fixed/26825-std-function-func-mapsignaturetype.swift index c7f29886b24e9..73f3a77f0e844 100644 --- a/validation-test/compiler_crashers/26825-std-function-func-mapsignaturetype.swift +++ b/validation-test/compiler_crashers_fixed/26825-std-function-func-mapsignaturetype.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/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift b/validation-test/compiler_crashers_fixed/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift similarity index 80% rename from validation-test/compiler_crashers/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift rename to validation-test/compiler_crashers_fixed/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift index e39edabf54917..d70590ec1093c 100644 --- a/validation-test/compiler_crashers/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.swift +++ b/validation-test/compiler_crashers_fixed/26831-llvm-densemapbase-llvm-smalldensemap-swift-typevariabletype.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/26834-swift-constraints-constraintsystem-generateconstraints.swift b/validation-test/compiler_crashers_fixed/26834-swift-constraints-constraintsystem-generateconstraints.swift similarity index 79% rename from validation-test/compiler_crashers/26834-swift-constraints-constraintsystem-generateconstraints.swift rename to validation-test/compiler_crashers_fixed/26834-swift-constraints-constraintsystem-generateconstraints.swift index 73e74a4709bfe..ac06dddd38d5a 100644 --- a/validation-test/compiler_crashers/26834-swift-constraints-constraintsystem-generateconstraints.swift +++ b/validation-test/compiler_crashers_fixed/26834-swift-constraints-constraintsystem-generateconstraints.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/26835-llvm-foldingset-swift-classtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/26835-llvm-foldingset-swift-classtype-nodeequals.swift similarity index 80% rename from validation-test/compiler_crashers/26835-llvm-foldingset-swift-classtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/26835-llvm-foldingset-swift-classtype-nodeequals.swift index af5d005f167ef..7dc5fc78e9012 100644 --- a/validation-test/compiler_crashers/26835-llvm-foldingset-swift-classtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/26835-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) diff --git a/validation-test/compiler_crashers/26846-formatdiagnostictext.swift b/validation-test/compiler_crashers_fixed/26846-formatdiagnostictext.swift similarity index 81% rename from validation-test/compiler_crashers/26846-formatdiagnostictext.swift rename to validation-test/compiler_crashers_fixed/26846-formatdiagnostictext.swift index f3be3a9e64633..747b7a7a5f7d0 100644 --- a/validation-test/compiler_crashers/26846-formatdiagnostictext.swift +++ b/validation-test/compiler_crashers_fixed/26846-formatdiagnostictext.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/26848-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/26848-swift-metatypetype-get.swift similarity index 80% rename from validation-test/compiler_crashers/26848-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/26848-swift-metatypetype-get.swift index 558d0d6030e85..5a80f9ca5ece1 100644 --- a/validation-test/compiler_crashers/26848-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/26848-swift-metatypetype-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/26850-swift-existentialmetatypetype-get.swift b/validation-test/compiler_crashers_fixed/26850-swift-existentialmetatypetype-get.swift similarity index 79% rename from validation-test/compiler_crashers/26850-swift-existentialmetatypetype-get.swift rename to validation-test/compiler_crashers_fixed/26850-swift-existentialmetatypetype-get.swift index 607a908ac5d4b..b578931f3b888 100644 --- a/validation-test/compiler_crashers/26850-swift-existentialmetatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/26850-swift-existentialmetatypetype-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/26851-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/26851-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 78% rename from validation-test/compiler_crashers/26851-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/26851-swift-printingdiagnosticconsumer-handlediagnostic.swift index b1f9429cfd1f0..59aa0d95b58be 100644 --- a/validation-test/compiler_crashers/26851-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26851-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) diff --git a/validation-test/compiler_crashers/26852-swift-modulefile-lookupvalue.swift b/validation-test/compiler_crashers_fixed/26852-swift-modulefile-lookupvalue.swift similarity index 80% rename from validation-test/compiler_crashers/26852-swift-modulefile-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/26852-swift-modulefile-lookupvalue.swift index e16f11c0bbf1f..9a9a9fa367c45 100644 --- a/validation-test/compiler_crashers/26852-swift-modulefile-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/26852-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) diff --git a/validation-test/compiler_crashers/26858-swift-streamprinter-printtext.swift b/validation-test/compiler_crashers_fixed/26858-swift-streamprinter-printtext.swift similarity index 82% rename from validation-test/compiler_crashers/26858-swift-streamprinter-printtext.swift rename to validation-test/compiler_crashers_fixed/26858-swift-streamprinter-printtext.swift index c1fe800db8a7c..b84cd6015e589 100644 --- a/validation-test/compiler_crashers/26858-swift-streamprinter-printtext.swift +++ b/validation-test/compiler_crashers_fixed/26858-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/26863-swift-constraints-constraintsystem-simplifyconstraint.swift b/validation-test/compiler_crashers_fixed/26863-swift-constraints-constraintsystem-simplifyconstraint.swift similarity index 77% rename from validation-test/compiler_crashers/26863-swift-constraints-constraintsystem-simplifyconstraint.swift rename to validation-test/compiler_crashers_fixed/26863-swift-constraints-constraintsystem-simplifyconstraint.swift index 48c5abc3fc4e3..058f49d6d39a3 100644 --- a/validation-test/compiler_crashers/26863-swift-constraints-constraintsystem-simplifyconstraint.swift +++ b/validation-test/compiler_crashers_fixed/26863-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/26873-void.swift b/validation-test/compiler_crashers_fixed/26873-void.swift similarity index 80% rename from validation-test/compiler_crashers/26873-void.swift rename to validation-test/compiler_crashers_fixed/26873-void.swift index 03848f6ea8912..bc7ebc6d53b2b 100644 --- a/validation-test/compiler_crashers/26873-void.swift +++ b/validation-test/compiler_crashers_fixed/26873-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) diff --git a/validation-test/compiler_crashers/26875-swift-typechecker-checkunsupportedprotocoltype.swift b/validation-test/compiler_crashers_fixed/26875-swift-typechecker-checkunsupportedprotocoltype.swift similarity index 79% rename from validation-test/compiler_crashers/26875-swift-typechecker-checkunsupportedprotocoltype.swift rename to validation-test/compiler_crashers_fixed/26875-swift-typechecker-checkunsupportedprotocoltype.swift index f47fee782ba2e..4d6085916a5ae 100644 --- a/validation-test/compiler_crashers/26875-swift-typechecker-checkunsupportedprotocoltype.swift +++ b/validation-test/compiler_crashers_fixed/26875-swift-typechecker-checkunsupportedprotocoltype.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/26885-swift-constraints-constraintgraph-removeconstraint.swift b/validation-test/compiler_crashers_fixed/26885-swift-constraints-constraintgraph-removeconstraint.swift similarity index 79% rename from validation-test/compiler_crashers/26885-swift-constraints-constraintgraph-removeconstraint.swift rename to validation-test/compiler_crashers_fixed/26885-swift-constraints-constraintgraph-removeconstraint.swift index 1735c93ee4993..48d813b78eb69 100644 --- a/validation-test/compiler_crashers/26885-swift-constraints-constraintgraph-removeconstraint.swift +++ b/validation-test/compiler_crashers_fixed/26885-swift-constraints-constraintgraph-removeconstraint.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/26889-swift-tupletype-get.swift b/validation-test/compiler_crashers_fixed/26889-swift-tupletype-get.swift similarity index 82% rename from validation-test/compiler_crashers/26889-swift-tupletype-get.swift rename to validation-test/compiler_crashers_fixed/26889-swift-tupletype-get.swift index 4e3951912b1dd..b349065aab1de 100644 --- a/validation-test/compiler_crashers/26889-swift-tupletype-get.swift +++ b/validation-test/compiler_crashers_fixed/26889-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) diff --git a/validation-test/compiler_crashers/26890-swift-typechecker-isdeclavailable.swift b/validation-test/compiler_crashers_fixed/26890-swift-typechecker-isdeclavailable.swift similarity index 81% rename from validation-test/compiler_crashers/26890-swift-typechecker-isdeclavailable.swift rename to validation-test/compiler_crashers_fixed/26890-swift-typechecker-isdeclavailable.swift index 6b4f41e8e39be..20c6a01d53473 100644 --- a/validation-test/compiler_crashers/26890-swift-typechecker-isdeclavailable.swift +++ b/validation-test/compiler_crashers_fixed/26890-swift-typechecker-isdeclavailable.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/26895-swift-lexer-lexidentifier.swift b/validation-test/compiler_crashers_fixed/26895-swift-lexer-lexidentifier.swift similarity index 78% rename from validation-test/compiler_crashers/26895-swift-lexer-lexidentifier.swift rename to validation-test/compiler_crashers_fixed/26895-swift-lexer-lexidentifier.swift index bcd3192008c80..72a3af182ed33 100644 --- a/validation-test/compiler_crashers/26895-swift-lexer-lexidentifier.swift +++ b/validation-test/compiler_crashers_fixed/26895-swift-lexer-lexidentifier.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/26896-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/26896-swift-diagnosticengine-emitdiagnostic.swift similarity index 80% rename from validation-test/compiler_crashers/26896-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/26896-swift-diagnosticengine-emitdiagnostic.swift index 0f73e29fe3003..98d649b08be48 100644 --- a/validation-test/compiler_crashers/26896-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26896-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/26897-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/26897-swift-constraints-constraintsystem-simplifytype.swift similarity index 79% rename from validation-test/compiler_crashers/26897-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/26897-swift-constraints-constraintsystem-simplifytype.swift index 66f3a584df852..13e10dae986e5 100644 --- a/validation-test/compiler_crashers/26897-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/26897-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/26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift similarity index 79% rename from validation-test/compiler_crashers/26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift index 54866d096da70..116bdc52c835c 100644 --- a/validation-test/compiler_crashers/26899-std-function-func-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/26899-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/26900-swift-typechecker-overapproximateosversionsatlocation.swift b/validation-test/compiler_crashers_fixed/26900-swift-typechecker-overapproximateosversionsatlocation.swift similarity index 80% rename from validation-test/compiler_crashers/26900-swift-typechecker-overapproximateosversionsatlocation.swift rename to validation-test/compiler_crashers_fixed/26900-swift-typechecker-overapproximateosversionsatlocation.swift index a0f34db233159..bd73982df65b0 100644 --- a/validation-test/compiler_crashers/26900-swift-typechecker-overapproximateosversionsatlocation.swift +++ b/validation-test/compiler_crashers_fixed/26900-swift-typechecker-overapproximateosversionsatlocation.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/26902-swift-typechecker-resolvetypeincontext.swift b/validation-test/compiler_crashers_fixed/26902-swift-typechecker-resolvetypeincontext.swift similarity index 80% rename from validation-test/compiler_crashers/26902-swift-typechecker-resolvetypeincontext.swift rename to validation-test/compiler_crashers_fixed/26902-swift-typechecker-resolvetypeincontext.swift index 9108bc15bb745..776357c225dab 100644 --- a/validation-test/compiler_crashers/26902-swift-typechecker-resolvetypeincontext.swift +++ b/validation-test/compiler_crashers_fixed/26902-swift-typechecker-resolvetypeincontext.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/26913-swift-markasobjc.swift b/validation-test/compiler_crashers_fixed/26913-swift-markasobjc.swift similarity index 80% rename from validation-test/compiler_crashers/26913-swift-markasobjc.swift rename to validation-test/compiler_crashers_fixed/26913-swift-markasobjc.swift index 176be1822f0da..5e62d5ece8bd4 100644 --- a/validation-test/compiler_crashers/26913-swift-markasobjc.swift +++ b/validation-test/compiler_crashers_fixed/26913-swift-markasobjc.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/26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift similarity index 78% rename from validation-test/compiler_crashers/26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift index 998ca42708e59..b36646bcd7905 100644 --- a/validation-test/compiler_crashers/26915-std-function-func-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/26915-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/26917-swift-nominaltype-get.swift b/validation-test/compiler_crashers_fixed/26917-swift-nominaltype-get.swift similarity index 79% rename from validation-test/compiler_crashers/26917-swift-nominaltype-get.swift rename to validation-test/compiler_crashers_fixed/26917-swift-nominaltype-get.swift index d2916c492faed..101e28f167d50 100644 --- a/validation-test/compiler_crashers/26917-swift-nominaltype-get.swift +++ b/validation-test/compiler_crashers_fixed/26917-swift-nominaltype-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/26920-swift-typebase-getanyoptionalobjecttype.swift b/validation-test/compiler_crashers_fixed/26920-swift-typebase-getanyoptionalobjecttype.swift similarity index 80% rename from validation-test/compiler_crashers/26920-swift-typebase-getanyoptionalobjecttype.swift rename to validation-test/compiler_crashers_fixed/26920-swift-typebase-getanyoptionalobjecttype.swift index 7ee5f5a2cacd3..d561c554a4fd3 100644 --- a/validation-test/compiler_crashers/26920-swift-typebase-getanyoptionalobjecttype.swift +++ b/validation-test/compiler_crashers_fixed/26920-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) diff --git a/validation-test/compiler_crashers/26923-swift-typechecker-typecheckexpression.swift b/validation-test/compiler_crashers_fixed/26923-swift-typechecker-typecheckexpression.swift similarity index 79% rename from validation-test/compiler_crashers/26923-swift-typechecker-typecheckexpression.swift rename to validation-test/compiler_crashers_fixed/26923-swift-typechecker-typecheckexpression.swift index 74b67538069d0..1cd14ed5b642e 100644 --- a/validation-test/compiler_crashers/26923-swift-typechecker-typecheckexpression.swift +++ b/validation-test/compiler_crashers_fixed/26923-swift-typechecker-typecheckexpression.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/26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift b/validation-test/compiler_crashers_fixed/26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift similarity index 80% rename from validation-test/compiler_crashers/26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift rename to validation-test/compiler_crashers_fixed/26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift index 73ec4e6e79cca..2a218f4c73320 100644 --- a/validation-test/compiler_crashers/26925-swift-constraints-constraintgraph-computeconnectedcomponents.swift +++ b/validation-test/compiler_crashers_fixed/26925-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/26934-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/26934-swift-lexer-leximpl.swift similarity index 84% rename from validation-test/compiler_crashers/26934-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/26934-swift-lexer-leximpl.swift index e5dd5d074455f..d463b9a4862d3 100644 --- a/validation-test/compiler_crashers/26934-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/26934-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/26937-llvm-foldingset-swift-tupletype-nodeequals.swift b/validation-test/compiler_crashers_fixed/26937-llvm-foldingset-swift-tupletype-nodeequals.swift similarity index 80% rename from validation-test/compiler_crashers/26937-llvm-foldingset-swift-tupletype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/26937-llvm-foldingset-swift-tupletype-nodeequals.swift index 433c9b1f18c70..cf483db09583b 100644 --- a/validation-test/compiler_crashers/26937-llvm-foldingset-swift-tupletype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/26937-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/26938-swift-diagnosticengine-flushactivediagnostic.swift b/validation-test/compiler_crashers_fixed/26938-swift-diagnosticengine-flushactivediagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/26938-swift-diagnosticengine-flushactivediagnostic.swift rename to validation-test/compiler_crashers_fixed/26938-swift-diagnosticengine-flushactivediagnostic.swift index d32518ea70211..4ed7985f1390a 100644 --- a/validation-test/compiler_crashers/26938-swift-diagnosticengine-flushactivediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/26938-swift-diagnosticengine-flushactivediagnostic.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/26942-swift-nominaltypedecl-computeinterfacetype.swift b/validation-test/compiler_crashers_fixed/26942-swift-nominaltypedecl-computeinterfacetype.swift similarity index 79% rename from validation-test/compiler_crashers/26942-swift-nominaltypedecl-computeinterfacetype.swift rename to validation-test/compiler_crashers_fixed/26942-swift-nominaltypedecl-computeinterfacetype.swift index 8acaa8181b95f..b94c7db930596 100644 --- a/validation-test/compiler_crashers/26942-swift-nominaltypedecl-computeinterfacetype.swift +++ b/validation-test/compiler_crashers_fixed/26942-swift-nominaltypedecl-computeinterfacetype.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/26944-swift-astprinter-printtextimpl.swift b/validation-test/compiler_crashers_fixed/26944-swift-astprinter-printtextimpl.swift similarity index 82% rename from validation-test/compiler_crashers/26944-swift-astprinter-printtextimpl.swift rename to validation-test/compiler_crashers_fixed/26944-swift-astprinter-printtextimpl.swift index a553348aef207..b98aa43e94a6d 100644 --- a/validation-test/compiler_crashers/26944-swift-astprinter-printtextimpl.swift +++ b/validation-test/compiler_crashers_fixed/26944-swift-astprinter-printtextimpl.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/26950-swift-constraints-constraintsystem-solve.swift b/validation-test/compiler_crashers_fixed/26950-swift-constraints-constraintsystem-solve.swift similarity index 79% rename from validation-test/compiler_crashers/26950-swift-constraints-constraintsystem-solve.swift rename to validation-test/compiler_crashers_fixed/26950-swift-constraints-constraintsystem-solve.swift index 1fab8a5ed27f3..2d0b0a7db4397 100644 --- a/validation-test/compiler_crashers/26950-swift-constraints-constraintsystem-solve.swift +++ b/validation-test/compiler_crashers_fixed/26950-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/26954-swift-functiontype-get.swift b/validation-test/compiler_crashers_fixed/26954-swift-functiontype-get.swift similarity index 79% rename from validation-test/compiler_crashers/26954-swift-functiontype-get.swift rename to validation-test/compiler_crashers_fixed/26954-swift-functiontype-get.swift index 12de2bc25e384..3e0245adef6a4 100644 --- a/validation-test/compiler_crashers/26954-swift-functiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/26954-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/26962-swift-typechecker-validategenericfuncsignature.swift b/validation-test/compiler_crashers_fixed/26962-swift-typechecker-validategenericfuncsignature.swift similarity index 81% rename from validation-test/compiler_crashers/26962-swift-typechecker-validategenericfuncsignature.swift rename to validation-test/compiler_crashers_fixed/26962-swift-typechecker-validategenericfuncsignature.swift index 3912f9432ea6a..ce7caa734fc1c 100644 --- a/validation-test/compiler_crashers/26962-swift-typechecker-validategenericfuncsignature.swift +++ b/validation-test/compiler_crashers_fixed/26962-swift-typechecker-validategenericfuncsignature.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/26973-swift-boundgenerictype-get.swift b/validation-test/compiler_crashers_fixed/26973-swift-boundgenerictype-get.swift similarity index 81% rename from validation-test/compiler_crashers/26973-swift-boundgenerictype-get.swift rename to validation-test/compiler_crashers_fixed/26973-swift-boundgenerictype-get.swift index 45ec90fd49852..d4911e5c55276 100644 --- a/validation-test/compiler_crashers/26973-swift-boundgenerictype-get.swift +++ b/validation-test/compiler_crashers_fixed/26973-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) diff --git a/validation-test/compiler_crashers/26985-swift-genericparamlist-addnestedarchetypes.swift b/validation-test/compiler_crashers_fixed/26985-swift-genericparamlist-addnestedarchetypes.swift similarity index 80% rename from validation-test/compiler_crashers/26985-swift-genericparamlist-addnestedarchetypes.swift rename to validation-test/compiler_crashers_fixed/26985-swift-genericparamlist-addnestedarchetypes.swift index a19eff35d29a4..d77df3dd73889 100644 --- a/validation-test/compiler_crashers/26985-swift-genericparamlist-addnestedarchetypes.swift +++ b/validation-test/compiler_crashers_fixed/26985-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/26987-swift-constraints-constraintsystem-addconstraint.swift b/validation-test/compiler_crashers_fixed/26987-swift-constraints-constraintsystem-addconstraint.swift similarity index 78% rename from validation-test/compiler_crashers/26987-swift-constraints-constraintsystem-addconstraint.swift rename to validation-test/compiler_crashers_fixed/26987-swift-constraints-constraintsystem-addconstraint.swift index 1dcc251994f51..050ebe54176db 100644 --- a/validation-test/compiler_crashers/26987-swift-constraints-constraintsystem-addconstraint.swift +++ b/validation-test/compiler_crashers_fixed/26987-swift-constraints-constraintsystem-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/26988-swift-modulefile-getimportedmodules.swift b/validation-test/compiler_crashers_fixed/26988-swift-modulefile-getimportedmodules.swift similarity index 80% rename from validation-test/compiler_crashers/26988-swift-modulefile-getimportedmodules.swift rename to validation-test/compiler_crashers_fixed/26988-swift-modulefile-getimportedmodules.swift index 5337471da7bf4..05e103176f724 100644 --- a/validation-test/compiler_crashers/26988-swift-modulefile-getimportedmodules.swift +++ b/validation-test/compiler_crashers_fixed/26988-swift-modulefile-getimportedmodules.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/26991-swift-abstractclosureexpr-setparams.swift b/validation-test/compiler_crashers_fixed/26991-swift-abstractclosureexpr-setparams.swift similarity index 84% rename from validation-test/compiler_crashers/26991-swift-abstractclosureexpr-setparams.swift rename to validation-test/compiler_crashers_fixed/26991-swift-abstractclosureexpr-setparams.swift index 5878d5360c4fb..6b4a205d4a88f 100644 --- a/validation-test/compiler_crashers/26991-swift-abstractclosureexpr-setparams.swift +++ b/validation-test/compiler_crashers_fixed/26991-swift-abstractclosureexpr-setparams.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/26995-swift-typebase-isequal.swift b/validation-test/compiler_crashers_fixed/26995-swift-typebase-isequal.swift similarity index 79% rename from validation-test/compiler_crashers/26995-swift-typebase-isequal.swift rename to validation-test/compiler_crashers_fixed/26995-swift-typebase-isequal.swift index 040fe07cef6d0..3cec62efb1570 100644 --- a/validation-test/compiler_crashers/26995-swift-typebase-isequal.swift +++ b/validation-test/compiler_crashers_fixed/26995-swift-typebase-isequal.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/27003-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27003-swift-typebase-getcanonicaltype.swift similarity index 81% rename from validation-test/compiler_crashers/27003-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27003-swift-typebase-getcanonicaltype.swift index e9ae5b0ad01a8..55cff5d6729d5 100644 --- a/validation-test/compiler_crashers/27003-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27003-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/27016-swift-constraints-constraintsystem-solverec.swift b/validation-test/compiler_crashers_fixed/27016-swift-constraints-constraintsystem-solverec.swift similarity index 82% rename from validation-test/compiler_crashers/27016-swift-constraints-constraintsystem-solverec.swift rename to validation-test/compiler_crashers_fixed/27016-swift-constraints-constraintsystem-solverec.swift index 225e9cfe6c759..db90f511cdc6d 100644 --- a/validation-test/compiler_crashers/27016-swift-constraints-constraintsystem-solverec.swift +++ b/validation-test/compiler_crashers_fixed/27016-swift-constraints-constraintsystem-solverec.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/27018-swift-conformancelookuptable-getallprotocols.swift b/validation-test/compiler_crashers_fixed/27018-swift-conformancelookuptable-getallprotocols.swift similarity index 80% rename from validation-test/compiler_crashers/27018-swift-conformancelookuptable-getallprotocols.swift rename to validation-test/compiler_crashers_fixed/27018-swift-conformancelookuptable-getallprotocols.swift index 79bcf4205a36b..5daefb4f5937a 100644 --- a/validation-test/compiler_crashers/27018-swift-conformancelookuptable-getallprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27018-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/27019-swift-genericfunctiontype-get.swift b/validation-test/compiler_crashers_fixed/27019-swift-genericfunctiontype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27019-swift-genericfunctiontype-get.swift rename to validation-test/compiler_crashers_fixed/27019-swift-genericfunctiontype-get.swift index 269977fe8fc65..50f6d21435371 100644 --- a/validation-test/compiler_crashers/27019-swift-genericfunctiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27019-swift-genericfunctiontype-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/27022-swift-classtype-get.swift b/validation-test/compiler_crashers_fixed/27022-swift-classtype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27022-swift-classtype-get.swift rename to validation-test/compiler_crashers_fixed/27022-swift-classtype-get.swift index 34603789fe21c..7bcca5509d6b5 100644 --- a/validation-test/compiler_crashers/27022-swift-classtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27022-swift-classtype-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/27030-std-function-func-swift-type-subst.swift b/validation-test/compiler_crashers_fixed/27030-std-function-func-swift-type-subst.swift similarity index 80% rename from validation-test/compiler_crashers/27030-std-function-func-swift-type-subst.swift rename to validation-test/compiler_crashers_fixed/27030-std-function-func-swift-type-subst.swift index 1d4f280857c3b..d5157ac96f6e8 100644 --- a/validation-test/compiler_crashers/27030-std-function-func-swift-type-subst.swift +++ b/validation-test/compiler_crashers_fixed/27030-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) diff --git a/validation-test/compiler_crashers/27044-swift-functiontype-get.swift b/validation-test/compiler_crashers_fixed/27044-swift-functiontype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27044-swift-functiontype-get.swift rename to validation-test/compiler_crashers_fixed/27044-swift-functiontype-get.swift index f583a9f41a736..06b059999bd10 100644 --- a/validation-test/compiler_crashers/27044-swift-functiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27044-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/27045-swift-lexer-diagnose.swift b/validation-test/compiler_crashers_fixed/27045-swift-lexer-diagnose.swift similarity index 87% rename from validation-test/compiler_crashers/27045-swift-lexer-diagnose.swift rename to validation-test/compiler_crashers_fixed/27045-swift-lexer-diagnose.swift index d90d411791cd4..6574735f3a366 100644 --- a/validation-test/compiler_crashers/27045-swift-lexer-diagnose.swift +++ b/validation-test/compiler_crashers_fixed/27045-swift-lexer-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/27046-swift-declcontext-getlocalconformances.swift b/validation-test/compiler_crashers_fixed/27046-swift-declcontext-getlocalconformances.swift similarity index 82% rename from validation-test/compiler_crashers/27046-swift-declcontext-getlocalconformances.swift rename to validation-test/compiler_crashers_fixed/27046-swift-declcontext-getlocalconformances.swift index 4448ad3c74ac8..e8c731f5788de 100644 --- a/validation-test/compiler_crashers/27046-swift-declcontext-getlocalconformances.swift +++ b/validation-test/compiler_crashers_fixed/27046-swift-declcontext-getlocalconformances.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/27050-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/27050-swift-typechecker-coercepatterntotype.swift similarity index 81% rename from validation-test/compiler_crashers/27050-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/27050-swift-typechecker-coercepatterntotype.swift index 1309391a5a95a..57352fff1736b 100644 --- a/validation-test/compiler_crashers/27050-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/27050-swift-typechecker-coercepatterntotype.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/27053-swift-typechecker-checkdeclarationavailability.swift b/validation-test/compiler_crashers_fixed/27053-swift-typechecker-checkdeclarationavailability.swift similarity index 80% rename from validation-test/compiler_crashers/27053-swift-typechecker-checkdeclarationavailability.swift rename to validation-test/compiler_crashers_fixed/27053-swift-typechecker-checkdeclarationavailability.swift index 5edb9470afe3f..b547979466b0d 100644 --- a/validation-test/compiler_crashers/27053-swift-typechecker-checkdeclarationavailability.swift +++ b/validation-test/compiler_crashers_fixed/27053-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/27058-llvm-optional-swift-diagnostic-operator.swift b/validation-test/compiler_crashers_fixed/27058-llvm-optional-swift-diagnostic-operator.swift similarity index 79% rename from validation-test/compiler_crashers/27058-llvm-optional-swift-diagnostic-operator.swift rename to validation-test/compiler_crashers_fixed/27058-llvm-optional-swift-diagnostic-operator.swift index aa5066e578e39..e5c0383554920 100644 --- a/validation-test/compiler_crashers/27058-llvm-optional-swift-diagnostic-operator.swift +++ b/validation-test/compiler_crashers_fixed/27058-llvm-optional-swift-diagnostic-operator.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/27063-swift-conformancelookuptable-lookupconformances.swift b/validation-test/compiler_crashers_fixed/27063-swift-conformancelookuptable-lookupconformances.swift similarity index 82% rename from validation-test/compiler_crashers/27063-swift-conformancelookuptable-lookupconformances.swift rename to validation-test/compiler_crashers_fixed/27063-swift-conformancelookuptable-lookupconformances.swift index 91276da7a5519..b94492d17c4d1 100644 --- a/validation-test/compiler_crashers/27063-swift-conformancelookuptable-lookupconformances.swift +++ b/validation-test/compiler_crashers_fixed/27063-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/27068-swift-conformancelookuptable-conformancelookuptable.swift b/validation-test/compiler_crashers_fixed/27068-swift-conformancelookuptable-conformancelookuptable.swift similarity index 80% rename from validation-test/compiler_crashers/27068-swift-conformancelookuptable-conformancelookuptable.swift rename to validation-test/compiler_crashers_fixed/27068-swift-conformancelookuptable-conformancelookuptable.swift index f086c36ed0f9b..519cac4fb400e 100644 --- a/validation-test/compiler_crashers/27068-swift-conformancelookuptable-conformancelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27068-swift-conformancelookuptable-conformancelookuptable.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/27073-swift-constraints-constraint-create.swift b/validation-test/compiler_crashers_fixed/27073-swift-constraints-constraint-create.swift similarity index 79% rename from validation-test/compiler_crashers/27073-swift-constraints-constraint-create.swift rename to validation-test/compiler_crashers_fixed/27073-swift-constraints-constraint-create.swift index 7ea7373c9c9e4..a9673effa5780 100644 --- a/validation-test/compiler_crashers/27073-swift-constraints-constraint-create.swift +++ b/validation-test/compiler_crashers_fixed/27073-swift-constraints-constraint-create.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/27079-swift-clangmoduleunit-lookupvalue.swift b/validation-test/compiler_crashers_fixed/27079-swift-clangmoduleunit-lookupvalue.swift similarity index 79% rename from validation-test/compiler_crashers/27079-swift-clangmoduleunit-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/27079-swift-clangmoduleunit-lookupvalue.swift index 7cf8e0ef41941..f7d809a489340 100644 --- a/validation-test/compiler_crashers/27079-swift-clangmoduleunit-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/27079-swift-clangmoduleunit-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/27082-swift-constraints-constraintgraph-addconstraint.swift b/validation-test/compiler_crashers_fixed/27082-swift-constraints-constraintgraph-addconstraint.swift similarity index 80% rename from validation-test/compiler_crashers/27082-swift-constraints-constraintgraph-addconstraint.swift rename to validation-test/compiler_crashers_fixed/27082-swift-constraints-constraintgraph-addconstraint.swift index 534ed5f81bc64..cb23b4f23c1df 100644 --- a/validation-test/compiler_crashers/27082-swift-constraints-constraintgraph-addconstraint.swift +++ b/validation-test/compiler_crashers_fixed/27082-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/27092-swift-typeloc-iserror.swift b/validation-test/compiler_crashers_fixed/27092-swift-typeloc-iserror.swift similarity index 81% rename from validation-test/compiler_crashers/27092-swift-typeloc-iserror.swift rename to validation-test/compiler_crashers_fixed/27092-swift-typeloc-iserror.swift index 7c21adafb274a..8fb34200a709f 100644 --- a/validation-test/compiler_crashers/27092-swift-typeloc-iserror.swift +++ b/validation-test/compiler_crashers_fixed/27092-swift-typeloc-iserror.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/27094-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/27094-resolveidenttypecomponent.swift similarity index 80% rename from validation-test/compiler_crashers/27094-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/27094-resolveidenttypecomponent.swift index ae033733c3300..1a66235fad16b 100644 --- a/validation-test/compiler_crashers/27094-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/27094-resolveidenttypecomponent.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/27095-swift-nominaltypedecl-getmembers.swift b/validation-test/compiler_crashers_fixed/27095-swift-nominaltypedecl-getmembers.swift similarity index 83% rename from validation-test/compiler_crashers/27095-swift-nominaltypedecl-getmembers.swift rename to validation-test/compiler_crashers_fixed/27095-swift-nominaltypedecl-getmembers.swift index 30bf9a0667cef..462b3de31fa3e 100644 --- a/validation-test/compiler_crashers/27095-swift-nominaltypedecl-getmembers.swift +++ b/validation-test/compiler_crashers_fixed/27095-swift-nominaltypedecl-getmembers.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/27099-swift-decl-walk.swift b/validation-test/compiler_crashers_fixed/27099-swift-decl-walk.swift similarity index 82% rename from validation-test/compiler_crashers/27099-swift-decl-walk.swift rename to validation-test/compiler_crashers_fixed/27099-swift-decl-walk.swift index a80c8112e76ce..3668e0ab1ea8a 100644 --- a/validation-test/compiler_crashers/27099-swift-decl-walk.swift +++ b/validation-test/compiler_crashers_fixed/27099-swift-decl-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/27102-void.swift b/validation-test/compiler_crashers_fixed/27102-void.swift similarity index 79% rename from validation-test/compiler_crashers/27102-void.swift rename to validation-test/compiler_crashers_fixed/27102-void.swift index a1f1c83150bb1..9dca262e9d9ec 100644 --- a/validation-test/compiler_crashers/27102-void.swift +++ b/validation-test/compiler_crashers_fixed/27102-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) diff --git a/validation-test/compiler_crashers/27106-llvm-foldingset-swift-structtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/27106-llvm-foldingset-swift-structtype-nodeequals.swift similarity index 81% rename from validation-test/compiler_crashers/27106-llvm-foldingset-swift-structtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27106-llvm-foldingset-swift-structtype-nodeequals.swift index a4ed8e1f23c06..9ace0dfbbb9ab 100644 --- a/validation-test/compiler_crashers/27106-llvm-foldingset-swift-structtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27106-llvm-foldingset-swift-structtype-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/27110-swift-patternbindingdecl-setpattern.swift b/validation-test/compiler_crashers_fixed/27110-swift-patternbindingdecl-setpattern.swift similarity index 86% rename from validation-test/compiler_crashers/27110-swift-patternbindingdecl-setpattern.swift rename to validation-test/compiler_crashers_fixed/27110-swift-patternbindingdecl-setpattern.swift index 45aa2da9aa7e4..929b7a6e44fde 100644 --- a/validation-test/compiler_crashers/27110-swift-patternbindingdecl-setpattern.swift +++ b/validation-test/compiler_crashers_fixed/27110-swift-patternbindingdecl-setpattern.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/27121-vtable.swift b/validation-test/compiler_crashers_fixed/27121-vtable.swift similarity index 79% rename from validation-test/compiler_crashers/27121-vtable.swift rename to validation-test/compiler_crashers_fixed/27121-vtable.swift index c6aa1826282f6..f5480ff5b36a0 100644 --- a/validation-test/compiler_crashers/27121-vtable.swift +++ b/validation-test/compiler_crashers_fixed/27121-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/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift b/validation-test/compiler_crashers_fixed/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift similarity index 81% rename from validation-test/compiler_crashers/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift rename to validation-test/compiler_crashers_fixed/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift index 116f766166de6..5dca264c7e121 100644 --- a/validation-test/compiler_crashers/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.swift +++ b/validation-test/compiler_crashers_fixed/27122-llvm-ondiskchainedhashtable-swift-modulefile-decltableinfo-find.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/27125-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/27125-swift-typechecker-coercepatterntotype.swift similarity index 82% rename from validation-test/compiler_crashers/27125-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/27125-swift-typechecker-coercepatterntotype.swift index 708a243299c7d..1fb10bc65268f 100644 --- a/validation-test/compiler_crashers/27125-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/27125-swift-typechecker-coercepatterntotype.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/27126-swift-constraints-solution-solution.swift b/validation-test/compiler_crashers_fixed/27126-swift-constraints-solution-solution.swift similarity index 80% rename from validation-test/compiler_crashers/27126-swift-constraints-solution-solution.swift rename to validation-test/compiler_crashers_fixed/27126-swift-constraints-solution-solution.swift index 4d9983489dea9..730c90b5c5159 100644 --- a/validation-test/compiler_crashers/27126-swift-constraints-solution-solution.swift +++ b/validation-test/compiler_crashers_fixed/27126-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/27127-swift-constraints-constraintgraph-change-undo.swift b/validation-test/compiler_crashers_fixed/27127-swift-constraints-constraintgraph-change-undo.swift similarity index 81% rename from validation-test/compiler_crashers/27127-swift-constraints-constraintgraph-change-undo.swift rename to validation-test/compiler_crashers_fixed/27127-swift-constraints-constraintgraph-change-undo.swift index e977e7dcab23f..d5f6fa910ecdb 100644 --- a/validation-test/compiler_crashers/27127-swift-constraints-constraintgraph-change-undo.swift +++ b/validation-test/compiler_crashers_fixed/27127-swift-constraints-constraintgraph-change-undo.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/27129-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27129-swift-typebase-getcanonicaltype.swift similarity index 82% rename from validation-test/compiler_crashers/27129-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27129-swift-typebase-getcanonicaltype.swift index 3c0e52e1909a6..b8a8acde53a73 100644 --- a/validation-test/compiler_crashers/27129-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27129-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/27145-swift-archetypebuilder-addgenericsignature.swift b/validation-test/compiler_crashers_fixed/27145-swift-archetypebuilder-addgenericsignature.swift similarity index 81% rename from validation-test/compiler_crashers/27145-swift-archetypebuilder-addgenericsignature.swift rename to validation-test/compiler_crashers_fixed/27145-swift-archetypebuilder-addgenericsignature.swift index 9108748b67a8a..5cc9a0519f109 100644 --- a/validation-test/compiler_crashers/27145-swift-archetypebuilder-addgenericsignature.swift +++ b/validation-test/compiler_crashers_fixed/27145-swift-archetypebuilder-addgenericsignature.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/27147-swift-boundgenerictype-get.swift b/validation-test/compiler_crashers_fixed/27147-swift-boundgenerictype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27147-swift-boundgenerictype-get.swift rename to validation-test/compiler_crashers_fixed/27147-swift-boundgenerictype-get.swift index ac74e49fc2bf7..641a4077196ac 100644 --- a/validation-test/compiler_crashers/27147-swift-boundgenerictype-get.swift +++ b/validation-test/compiler_crashers_fixed/27147-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) diff --git a/validation-test/compiler_crashers/27151-swift-expr-walk.swift b/validation-test/compiler_crashers_fixed/27151-swift-expr-walk.swift similarity index 79% rename from validation-test/compiler_crashers/27151-swift-expr-walk.swift rename to validation-test/compiler_crashers_fixed/27151-swift-expr-walk.swift index fc219503d10cd..68c232c7278d3 100644 --- a/validation-test/compiler_crashers/27151-swift-expr-walk.swift +++ b/validation-test/compiler_crashers_fixed/27151-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) diff --git a/validation-test/compiler_crashers/27154-swift-modulefile-getdecl.swift b/validation-test/compiler_crashers_fixed/27154-swift-modulefile-getdecl.swift similarity index 81% rename from validation-test/compiler_crashers/27154-swift-modulefile-getdecl.swift rename to validation-test/compiler_crashers_fixed/27154-swift-modulefile-getdecl.swift index a8dc16eb23223..1b5b4d2502776 100644 --- a/validation-test/compiler_crashers/27154-swift-modulefile-getdecl.swift +++ b/validation-test/compiler_crashers_fixed/27154-swift-modulefile-getdecl.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/27155-swift-attributebase-operator.swift b/validation-test/compiler_crashers_fixed/27155-swift-attributebase-operator.swift similarity index 83% rename from validation-test/compiler_crashers/27155-swift-attributebase-operator.swift rename to validation-test/compiler_crashers_fixed/27155-swift-attributebase-operator.swift index 006fb37e5ef43..f62c4ccd8aec3 100644 --- a/validation-test/compiler_crashers/27155-swift-attributebase-operator.swift +++ b/validation-test/compiler_crashers_fixed/27155-swift-attributebase-operator.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/27158-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27158-swift-inflightdiagnostic.swift similarity index 84% rename from validation-test/compiler_crashers/27158-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27158-swift-inflightdiagnostic.swift index d5689f351d652..712a2b57cd61d 100644 --- a/validation-test/compiler_crashers/27158-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27158-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/27164-swift-parser-parsetypeidentifier.swift b/validation-test/compiler_crashers_fixed/27164-swift-parser-parsetypeidentifier.swift similarity index 79% rename from validation-test/compiler_crashers/27164-swift-parser-parsetypeidentifier.swift rename to validation-test/compiler_crashers_fixed/27164-swift-parser-parsetypeidentifier.swift index 45091e9b2b947..075d0181e982b 100644 --- a/validation-test/compiler_crashers/27164-swift-parser-parsetypeidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27164-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/27165-swift-typechecker-checkunsupportedprotocoltype.swift b/validation-test/compiler_crashers_fixed/27165-swift-typechecker-checkunsupportedprotocoltype.swift similarity index 85% rename from validation-test/compiler_crashers/27165-swift-typechecker-checkunsupportedprotocoltype.swift rename to validation-test/compiler_crashers_fixed/27165-swift-typechecker-checkunsupportedprotocoltype.swift index 922d08aa42fb4..b6f26d894d5e5 100644 --- a/validation-test/compiler_crashers/27165-swift-typechecker-checkunsupportedprotocoltype.swift +++ b/validation-test/compiler_crashers_fixed/27165-swift-typechecker-checkunsupportedprotocoltype.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/27166-swift-typebase-isspecialized.swift b/validation-test/compiler_crashers_fixed/27166-swift-typebase-isspecialized.swift similarity index 83% rename from validation-test/compiler_crashers/27166-swift-typebase-isspecialized.swift rename to validation-test/compiler_crashers_fixed/27166-swift-typebase-isspecialized.swift index ccb3fc3c66bbd..df4776ad24ea4 100644 --- a/validation-test/compiler_crashers/27166-swift-typebase-isspecialized.swift +++ b/validation-test/compiler_crashers_fixed/27166-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/27173-swift-namelookup-findlocalval-visitbracestmt.swift b/validation-test/compiler_crashers_fixed/27173-swift-namelookup-findlocalval-visitbracestmt.swift similarity index 79% rename from validation-test/compiler_crashers/27173-swift-namelookup-findlocalval-visitbracestmt.swift rename to validation-test/compiler_crashers_fixed/27173-swift-namelookup-findlocalval-visitbracestmt.swift index 868402ad65bfc..422798c6072e8 100644 --- a/validation-test/compiler_crashers/27173-swift-namelookup-findlocalval-visitbracestmt.swift +++ b/validation-test/compiler_crashers_fixed/27173-swift-namelookup-findlocalval-visitbracestmt.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/27174-swift-valuedecl-getoverloadsignature.swift b/validation-test/compiler_crashers_fixed/27174-swift-valuedecl-getoverloadsignature.swift similarity index 81% rename from validation-test/compiler_crashers/27174-swift-valuedecl-getoverloadsignature.swift rename to validation-test/compiler_crashers_fixed/27174-swift-valuedecl-getoverloadsignature.swift index 4136ceef2ca11..fd61b2daae11e 100644 --- a/validation-test/compiler_crashers/27174-swift-valuedecl-getoverloadsignature.swift +++ b/validation-test/compiler_crashers_fixed/27174-swift-valuedecl-getoverloadsignature.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/27178-vtable.swift b/validation-test/compiler_crashers_fixed/27178-vtable.swift similarity index 80% rename from validation-test/compiler_crashers/27178-vtable.swift rename to validation-test/compiler_crashers_fixed/27178-vtable.swift index a73c3d7966c2c..0b8d53ed52d11 100644 --- a/validation-test/compiler_crashers/27178-vtable.swift +++ b/validation-test/compiler_crashers_fixed/27178-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/27179-swift-modulefile-gettype.swift b/validation-test/compiler_crashers_fixed/27179-swift-modulefile-gettype.swift similarity index 82% rename from validation-test/compiler_crashers/27179-swift-modulefile-gettype.swift rename to validation-test/compiler_crashers_fixed/27179-swift-modulefile-gettype.swift index 5cc7abf239aaa..9d7e0b941f144 100644 --- a/validation-test/compiler_crashers/27179-swift-modulefile-gettype.swift +++ b/validation-test/compiler_crashers_fixed/27179-swift-modulefile-gettype.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/27180-swift-constraints-constraintsystem-simplifytype.swift b/validation-test/compiler_crashers_fixed/27180-swift-constraints-constraintsystem-simplifytype.swift similarity index 80% rename from validation-test/compiler_crashers/27180-swift-constraints-constraintsystem-simplifytype.swift rename to validation-test/compiler_crashers_fixed/27180-swift-constraints-constraintsystem-simplifytype.swift index 4cb3dd4ff520b..b89973e35f307 100644 --- a/validation-test/compiler_crashers/27180-swift-constraints-constraintsystem-simplifytype.swift +++ b/validation-test/compiler_crashers_fixed/27180-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/27181-swift-patternbindingdecl-setpattern.swift b/validation-test/compiler_crashers_fixed/27181-swift-patternbindingdecl-setpattern.swift similarity index 81% rename from validation-test/compiler_crashers/27181-swift-patternbindingdecl-setpattern.swift rename to validation-test/compiler_crashers_fixed/27181-swift-patternbindingdecl-setpattern.swift index e05108ff9b844..91e185ef5fb72 100644 --- a/validation-test/compiler_crashers/27181-swift-patternbindingdecl-setpattern.swift +++ b/validation-test/compiler_crashers_fixed/27181-swift-patternbindingdecl-setpattern.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/27182-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/27182-swift-lexer-leximpl.swift similarity index 83% rename from validation-test/compiler_crashers/27182-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/27182-swift-lexer-leximpl.swift index fb4fa1c56375a..e17c78c529e43 100644 --- a/validation-test/compiler_crashers/27182-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/27182-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/27183-swift-diagnosticengine-flushactivediagnostic.swift b/validation-test/compiler_crashers_fixed/27183-swift-diagnosticengine-flushactivediagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/27183-swift-diagnosticengine-flushactivediagnostic.swift rename to validation-test/compiler_crashers_fixed/27183-swift-diagnosticengine-flushactivediagnostic.swift index 4c5bf8ba636cb..254db4847d9cc 100644 --- a/validation-test/compiler_crashers/27183-swift-diagnosticengine-flushactivediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27183-swift-diagnosticengine-flushactivediagnostic.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/27184-swift-lexer-getlocforendoftoken.swift b/validation-test/compiler_crashers_fixed/27184-swift-lexer-getlocforendoftoken.swift similarity index 81% rename from validation-test/compiler_crashers/27184-swift-lexer-getlocforendoftoken.swift rename to validation-test/compiler_crashers_fixed/27184-swift-lexer-getlocforendoftoken.swift index e8b2f28f3be83..cf9b6b8804ce0 100644 --- a/validation-test/compiler_crashers/27184-swift-lexer-getlocforendoftoken.swift +++ b/validation-test/compiler_crashers_fixed/27184-swift-lexer-getlocforendoftoken.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/27186-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/27186-swift-diagnosticengine-emitdiagnostic.swift similarity index 83% rename from validation-test/compiler_crashers/27186-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27186-swift-diagnosticengine-emitdiagnostic.swift index 187d69c4faefd..adbaeb416f76d 100644 --- a/validation-test/compiler_crashers/27186-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27186-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/27187-swift-protocoltype-canonicalizeprotocols.swift b/validation-test/compiler_crashers_fixed/27187-swift-protocoltype-canonicalizeprotocols.swift similarity index 80% rename from validation-test/compiler_crashers/27187-swift-protocoltype-canonicalizeprotocols.swift rename to validation-test/compiler_crashers_fixed/27187-swift-protocoltype-canonicalizeprotocols.swift index fd3a747e80771..c43aa718d557a 100644 --- a/validation-test/compiler_crashers/27187-swift-protocoltype-canonicalizeprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27187-swift-protocoltype-canonicalizeprotocols.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/27191-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/27191-swift-metatypetype-get.swift similarity index 82% rename from validation-test/compiler_crashers/27191-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/27191-swift-metatypetype-get.swift index e8167c29a8e37..00a1f548ba550 100644 --- a/validation-test/compiler_crashers/27191-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/27191-swift-metatypetype-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/27192-swift-dependentmembertype-get.swift b/validation-test/compiler_crashers_fixed/27192-swift-dependentmembertype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27192-swift-dependentmembertype-get.swift rename to validation-test/compiler_crashers_fixed/27192-swift-dependentmembertype-get.swift index 2be2e82baf113..68eefd56b30f9 100644 --- a/validation-test/compiler_crashers/27192-swift-dependentmembertype-get.swift +++ b/validation-test/compiler_crashers_fixed/27192-swift-dependentmembertype-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/27193-swift-typeloc-iserror.swift b/validation-test/compiler_crashers_fixed/27193-swift-typeloc-iserror.swift similarity index 83% rename from validation-test/compiler_crashers/27193-swift-typeloc-iserror.swift rename to validation-test/compiler_crashers_fixed/27193-swift-typeloc-iserror.swift index 806f53ea9938f..404efc4c152e8 100644 --- a/validation-test/compiler_crashers/27193-swift-typeloc-iserror.swift +++ b/validation-test/compiler_crashers_fixed/27193-swift-typeloc-iserror.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/27194-swift-pattern-foreachvariable.swift b/validation-test/compiler_crashers_fixed/27194-swift-pattern-foreachvariable.swift similarity index 97% rename from validation-test/compiler_crashers/27194-swift-pattern-foreachvariable.swift rename to validation-test/compiler_crashers_fixed/27194-swift-pattern-foreachvariable.swift index a985b2831787c..39fe64474d694 100644 --- a/validation-test/compiler_crashers/27194-swift-pattern-foreachvariable.swift +++ b/validation-test/compiler_crashers_fixed/27194-swift-pattern-foreachvariable.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/27195-swift-protocoltype-canonicalizeprotocols.swift b/validation-test/compiler_crashers_fixed/27195-swift-protocoltype-canonicalizeprotocols.swift similarity index 83% rename from validation-test/compiler_crashers/27195-swift-protocoltype-canonicalizeprotocols.swift rename to validation-test/compiler_crashers_fixed/27195-swift-protocoltype-canonicalizeprotocols.swift index 221ca06f5fd92..ee9b111fba02a 100644 --- a/validation-test/compiler_crashers/27195-swift-protocoltype-canonicalizeprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27195-swift-protocoltype-canonicalizeprotocols.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/27196-swift-typebase-getanyoptionalobjecttype.swift b/validation-test/compiler_crashers_fixed/27196-swift-typebase-getanyoptionalobjecttype.swift similarity index 82% rename from validation-test/compiler_crashers/27196-swift-typebase-getanyoptionalobjecttype.swift rename to validation-test/compiler_crashers_fixed/27196-swift-typebase-getanyoptionalobjecttype.swift index 6912e71c41bae..43df55864c9b9 100644 --- a/validation-test/compiler_crashers/27196-swift-typebase-getanyoptionalobjecttype.swift +++ b/validation-test/compiler_crashers_fixed/27196-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) diff --git a/validation-test/compiler_crashers/27198-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/27198-swift-substitutedtype-get.swift similarity index 82% rename from validation-test/compiler_crashers/27198-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/27198-swift-substitutedtype-get.swift index cac7be77965bb..3149237216be5 100644 --- a/validation-test/compiler_crashers/27198-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27198-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) diff --git a/validation-test/compiler_crashers/27199-swift-conformancelookuptable-lookupconformances.swift b/validation-test/compiler_crashers_fixed/27199-swift-conformancelookuptable-lookupconformances.swift similarity index 84% rename from validation-test/compiler_crashers/27199-swift-conformancelookuptable-lookupconformances.swift rename to validation-test/compiler_crashers_fixed/27199-swift-conformancelookuptable-lookupconformances.swift index 16e8a6c55d9b3..00de103f2afef 100644 --- a/validation-test/compiler_crashers/27199-swift-conformancelookuptable-lookupconformances.swift +++ b/validation-test/compiler_crashers_fixed/27199-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/27200-swift-abstractclosureexpr-setparams.swift b/validation-test/compiler_crashers_fixed/27200-swift-abstractclosureexpr-setparams.swift similarity index 81% rename from validation-test/compiler_crashers/27200-swift-abstractclosureexpr-setparams.swift rename to validation-test/compiler_crashers_fixed/27200-swift-abstractclosureexpr-setparams.swift index 46b4b755161bf..7f22a80eff18d 100644 --- a/validation-test/compiler_crashers/27200-swift-abstractclosureexpr-setparams.swift +++ b/validation-test/compiler_crashers_fixed/27200-swift-abstractclosureexpr-setparams.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/27201-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/27201-swift-diagnosticengine-emitdiagnostic.swift similarity index 80% rename from validation-test/compiler_crashers/27201-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27201-swift-diagnosticengine-emitdiagnostic.swift index 10014cf96acb2..3780228c0c9c8 100644 --- a/validation-test/compiler_crashers/27201-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27201-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/27202-swift-parser-consumetoken.swift b/validation-test/compiler_crashers_fixed/27202-swift-parser-consumetoken.swift similarity index 82% rename from validation-test/compiler_crashers/27202-swift-parser-consumetoken.swift rename to validation-test/compiler_crashers_fixed/27202-swift-parser-consumetoken.swift index 1d2c85cf6d715..63e7f8f86ca15 100644 --- a/validation-test/compiler_crashers/27202-swift-parser-consumetoken.swift +++ b/validation-test/compiler_crashers_fixed/27202-swift-parser-consumetoken.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/27205-swift-nominaltypedecl-getmembers.swift b/validation-test/compiler_crashers_fixed/27205-swift-nominaltypedecl-getmembers.swift similarity index 82% rename from validation-test/compiler_crashers/27205-swift-nominaltypedecl-getmembers.swift rename to validation-test/compiler_crashers_fixed/27205-swift-nominaltypedecl-getmembers.swift index 7a04beb788da7..ebc1d12c083f8 100644 --- a/validation-test/compiler_crashers/27205-swift-nominaltypedecl-getmembers.swift +++ b/validation-test/compiler_crashers_fixed/27205-swift-nominaltypedecl-getmembers.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/27207-swift-stmt-walk.swift b/validation-test/compiler_crashers_fixed/27207-swift-stmt-walk.swift similarity index 80% rename from validation-test/compiler_crashers/27207-swift-stmt-walk.swift rename to validation-test/compiler_crashers_fixed/27207-swift-stmt-walk.swift index 421420ca9f5c6..8df4df6ff84d6 100644 --- a/validation-test/compiler_crashers/27207-swift-stmt-walk.swift +++ b/validation-test/compiler_crashers_fixed/27207-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/27211-llvm-foldingsetnodeid-operator.swift b/validation-test/compiler_crashers_fixed/27211-llvm-foldingsetnodeid-operator.swift similarity index 81% rename from validation-test/compiler_crashers/27211-llvm-foldingsetnodeid-operator.swift rename to validation-test/compiler_crashers_fixed/27211-llvm-foldingsetnodeid-operator.swift index a0e1772bf8b13..9384128c29696 100644 --- a/validation-test/compiler_crashers/27211-llvm-foldingsetnodeid-operator.swift +++ b/validation-test/compiler_crashers_fixed/27211-llvm-foldingsetnodeid-operator.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/27212-swift-removeshadoweddecls.swift b/validation-test/compiler_crashers_fixed/27212-swift-removeshadoweddecls.swift similarity index 81% rename from validation-test/compiler_crashers/27212-swift-removeshadoweddecls.swift rename to validation-test/compiler_crashers_fixed/27212-swift-removeshadoweddecls.swift index 479a18e048145..02712502cac8a 100644 --- a/validation-test/compiler_crashers/27212-swift-removeshadoweddecls.swift +++ b/validation-test/compiler_crashers_fixed/27212-swift-removeshadoweddecls.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/27216-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27216-swift-typebase-getcanonicaltype.swift similarity index 81% rename from validation-test/compiler_crashers/27216-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27216-swift-typebase-getcanonicaltype.swift index 72880ed836dde..293c7e53299a6 100644 --- a/validation-test/compiler_crashers/27216-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27216-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/27218-swift-vardecl-getparentpattern.swift b/validation-test/compiler_crashers_fixed/27218-swift-vardecl-getparentpattern.swift similarity index 82% rename from validation-test/compiler_crashers/27218-swift-vardecl-getparentpattern.swift rename to validation-test/compiler_crashers_fixed/27218-swift-vardecl-getparentpattern.swift index 7a8c88adb88b9..4861e5cdefc1d 100644 --- a/validation-test/compiler_crashers/27218-swift-vardecl-getparentpattern.swift +++ b/validation-test/compiler_crashers_fixed/27218-swift-vardecl-getparentpattern.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/27221-swift-typechecker-lookupunqualified.swift b/validation-test/compiler_crashers_fixed/27221-swift-typechecker-lookupunqualified.swift similarity index 80% rename from validation-test/compiler_crashers/27221-swift-typechecker-lookupunqualified.swift rename to validation-test/compiler_crashers_fixed/27221-swift-typechecker-lookupunqualified.swift index d4a551bc7168c..3f61db56d3512 100644 --- a/validation-test/compiler_crashers/27221-swift-typechecker-lookupunqualified.swift +++ b/validation-test/compiler_crashers_fixed/27221-swift-typechecker-lookupunqualified.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/27222-swift-typebase-getanyoptionalobjecttype.swift b/validation-test/compiler_crashers_fixed/27222-swift-typebase-getanyoptionalobjecttype.swift similarity index 79% rename from validation-test/compiler_crashers/27222-swift-typebase-getanyoptionalobjecttype.swift rename to validation-test/compiler_crashers_fixed/27222-swift-typebase-getanyoptionalobjecttype.swift index 884e5cb36c8e7..6ab67e1d65b12 100644 --- a/validation-test/compiler_crashers/27222-swift-typebase-getanyoptionalobjecttype.swift +++ b/validation-test/compiler_crashers_fixed/27222-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) diff --git a/validation-test/compiler_crashers/27224-swift-constraints-constraintgraph-gatherconstraints.swift b/validation-test/compiler_crashers_fixed/27224-swift-constraints-constraintgraph-gatherconstraints.swift similarity index 80% rename from validation-test/compiler_crashers/27224-swift-constraints-constraintgraph-gatherconstraints.swift rename to validation-test/compiler_crashers_fixed/27224-swift-constraints-constraintgraph-gatherconstraints.swift index 2045fcf09f812..5d4ce62815feb 100644 --- a/validation-test/compiler_crashers/27224-swift-constraints-constraintgraph-gatherconstraints.swift +++ b/validation-test/compiler_crashers_fixed/27224-swift-constraints-constraintgraph-gatherconstraints.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/27226-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/27226-swift-lexer-leximpl.swift similarity index 79% rename from validation-test/compiler_crashers/27226-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/27226-swift-lexer-leximpl.swift index 0122f8ee38a84..de75782660f2c 100644 --- a/validation-test/compiler_crashers/27226-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/27226-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/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift b/validation-test/compiler_crashers_fixed/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift similarity index 79% rename from validation-test/compiler_crashers/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift rename to validation-test/compiler_crashers_fixed/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift index 4e1399982842b..9b25034b88270 100644 --- a/validation-test/compiler_crashers/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.swift +++ b/validation-test/compiler_crashers_fixed/27227-swift-constraints-constraintsystem-lookthroughimplicitlyunwrappedoptionaltype.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/27228-swift-conformancelookuptable-addprotocol.swift b/validation-test/compiler_crashers_fixed/27228-swift-conformancelookuptable-addprotocol.swift similarity index 81% rename from validation-test/compiler_crashers/27228-swift-conformancelookuptable-addprotocol.swift rename to validation-test/compiler_crashers_fixed/27228-swift-conformancelookuptable-addprotocol.swift index b3ee165325e5c..df45d55eb6909 100644 --- a/validation-test/compiler_crashers/27228-swift-conformancelookuptable-addprotocol.swift +++ b/validation-test/compiler_crashers_fixed/27228-swift-conformancelookuptable-addprotocol.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/27233-swift-modulefile-loadextensions.swift b/validation-test/compiler_crashers_fixed/27233-swift-modulefile-loadextensions.swift similarity index 80% rename from validation-test/compiler_crashers/27233-swift-modulefile-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27233-swift-modulefile-loadextensions.swift index cb0ba7745359f..6e54ed2973862 100644 --- a/validation-test/compiler_crashers/27233-swift-modulefile-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27233-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/27235-swift-lexer-getlocforendoftoken.swift b/validation-test/compiler_crashers_fixed/27235-swift-lexer-getlocforendoftoken.swift similarity index 83% rename from validation-test/compiler_crashers/27235-swift-lexer-getlocforendoftoken.swift rename to validation-test/compiler_crashers_fixed/27235-swift-lexer-getlocforendoftoken.swift index f7ddae042b931..24edf832f7f27 100644 --- a/validation-test/compiler_crashers/27235-swift-lexer-getlocforendoftoken.swift +++ b/validation-test/compiler_crashers_fixed/27235-swift-lexer-getlocforendoftoken.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/27240-no-stacktrace.swift b/validation-test/compiler_crashers_fixed/27240-no-stacktrace.swift similarity index 80% rename from validation-test/compiler_crashers/27240-no-stacktrace.swift rename to validation-test/compiler_crashers_fixed/27240-no-stacktrace.swift index 9bd02ba95b3b4..3eb28c674bd5c 100644 --- a/validation-test/compiler_crashers/27240-no-stacktrace.swift +++ b/validation-test/compiler_crashers_fixed/27240-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/27243-swift-typebase-gettypevariables.swift b/validation-test/compiler_crashers_fixed/27243-swift-typebase-gettypevariables.swift similarity index 78% rename from validation-test/compiler_crashers/27243-swift-typebase-gettypevariables.swift rename to validation-test/compiler_crashers_fixed/27243-swift-typebase-gettypevariables.swift index cd0fb285ee996..14b10ad7490b9 100644 --- a/validation-test/compiler_crashers/27243-swift-typebase-gettypevariables.swift +++ b/validation-test/compiler_crashers_fixed/27243-swift-typebase-gettypevariables.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/27244-swift-lexer-lexoperatoridentifier.swift b/validation-test/compiler_crashers_fixed/27244-swift-lexer-lexoperatoridentifier.swift similarity index 78% rename from validation-test/compiler_crashers/27244-swift-lexer-lexoperatoridentifier.swift rename to validation-test/compiler_crashers_fixed/27244-swift-lexer-lexoperatoridentifier.swift index 2d15b2df04f72..008679b87d943 100644 --- a/validation-test/compiler_crashers/27244-swift-lexer-lexoperatoridentifier.swift +++ b/validation-test/compiler_crashers_fixed/27244-swift-lexer-lexoperatoridentifier.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/27245-swift-archetypebuilder-addconformancerequirement.swift b/validation-test/compiler_crashers_fixed/27245-swift-archetypebuilder-addconformancerequirement.swift similarity index 81% rename from validation-test/compiler_crashers/27245-swift-archetypebuilder-addconformancerequirement.swift rename to validation-test/compiler_crashers_fixed/27245-swift-archetypebuilder-addconformancerequirement.swift index 11cda612eb42f..b891935a83b20 100644 --- a/validation-test/compiler_crashers/27245-swift-archetypebuilder-addconformancerequirement.swift +++ b/validation-test/compiler_crashers_fixed/27245-swift-archetypebuilder-addconformancerequirement.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/27246-swift-genericsignature-get.swift b/validation-test/compiler_crashers_fixed/27246-swift-genericsignature-get.swift similarity index 81% rename from validation-test/compiler_crashers/27246-swift-genericsignature-get.swift rename to validation-test/compiler_crashers_fixed/27246-swift-genericsignature-get.swift index a74e534762dd8..b183f3bdc4db3 100644 --- a/validation-test/compiler_crashers/27246-swift-genericsignature-get.swift +++ b/validation-test/compiler_crashers_fixed/27246-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) diff --git a/validation-test/compiler_crashers/27248-swift-conformancelookuptable-lookupconformance.swift b/validation-test/compiler_crashers_fixed/27248-swift-conformancelookuptable-lookupconformance.swift similarity index 83% rename from validation-test/compiler_crashers/27248-swift-conformancelookuptable-lookupconformance.swift rename to validation-test/compiler_crashers_fixed/27248-swift-conformancelookuptable-lookupconformance.swift index 64c33626c2b76..6ff6517d79f73 100644 --- a/validation-test/compiler_crashers/27248-swift-conformancelookuptable-lookupconformance.swift +++ b/validation-test/compiler_crashers_fixed/27248-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/27249-std-function-func.swift b/validation-test/compiler_crashers_fixed/27249-std-function-func.swift similarity index 80% rename from validation-test/compiler_crashers/27249-std-function-func.swift rename to validation-test/compiler_crashers_fixed/27249-std-function-func.swift index ab855e9b7401a..164f5f72f5a50 100644 --- a/validation-test/compiler_crashers/27249-std-function-func.swift +++ b/validation-test/compiler_crashers_fixed/27249-std-function-func.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/27252-swift-moduledecl-lookupconformance.swift b/validation-test/compiler_crashers_fixed/27252-swift-moduledecl-lookupconformance.swift similarity index 83% rename from validation-test/compiler_crashers/27252-swift-moduledecl-lookupconformance.swift rename to validation-test/compiler_crashers_fixed/27252-swift-moduledecl-lookupconformance.swift index fae5ad9e8e17b..44e9657765643 100644 --- a/validation-test/compiler_crashers/27252-swift-moduledecl-lookupconformance.swift +++ b/validation-test/compiler_crashers_fixed/27252-swift-moduledecl-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/27265-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/27265-resolveidenttypecomponent.swift similarity index 80% rename from validation-test/compiler_crashers/27265-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/27265-resolveidenttypecomponent.swift index 6a5bc89932d28..5d5fe71e6d9fb 100644 --- a/validation-test/compiler_crashers/27265-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/27265-resolveidenttypecomponent.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/27273-swift-constraints-constraintsystem-solvesimplified.swift b/validation-test/compiler_crashers_fixed/27273-swift-constraints-constraintsystem-solvesimplified.swift similarity index 79% rename from validation-test/compiler_crashers/27273-swift-constraints-constraintsystem-solvesimplified.swift rename to validation-test/compiler_crashers_fixed/27273-swift-constraints-constraintsystem-solvesimplified.swift index 9dc9329acdef8..279e767602cf2 100644 --- a/validation-test/compiler_crashers/27273-swift-constraints-constraintsystem-solvesimplified.swift +++ b/validation-test/compiler_crashers_fixed/27273-swift-constraints-constraintsystem-solvesimplified.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/27274-swift-functiontype-get.swift b/validation-test/compiler_crashers_fixed/27274-swift-functiontype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27274-swift-functiontype-get.swift rename to validation-test/compiler_crashers_fixed/27274-swift-functiontype-get.swift index ac83361cbb047..ffb1be605da5d 100644 --- a/validation-test/compiler_crashers/27274-swift-functiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27274-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/27277-swift-stmt-walk.swift b/validation-test/compiler_crashers_fixed/27277-swift-stmt-walk.swift similarity index 83% rename from validation-test/compiler_crashers/27277-swift-stmt-walk.swift rename to validation-test/compiler_crashers_fixed/27277-swift-stmt-walk.swift index 0b38bed1e34b6..2545fdf13a635 100644 --- a/validation-test/compiler_crashers/27277-swift-stmt-walk.swift +++ b/validation-test/compiler_crashers_fixed/27277-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/27279-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/27279-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 80% rename from validation-test/compiler_crashers/27279-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/27279-swift-printingdiagnosticconsumer-handlediagnostic.swift index 2acbbd2a1821c..e986b7252ba0d 100644 --- a/validation-test/compiler_crashers/27279-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27279-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) diff --git a/validation-test/compiler_crashers/27288-swift-typechecker-getinterfacetypefrominternaltype.swift b/validation-test/compiler_crashers_fixed/27288-swift-typechecker-getinterfacetypefrominternaltype.swift similarity index 81% rename from validation-test/compiler_crashers/27288-swift-typechecker-getinterfacetypefrominternaltype.swift rename to validation-test/compiler_crashers_fixed/27288-swift-typechecker-getinterfacetypefrominternaltype.swift index 59fb29384dcef..1119563eb3ccc 100644 --- a/validation-test/compiler_crashers/27288-swift-typechecker-getinterfacetypefrominternaltype.swift +++ b/validation-test/compiler_crashers_fixed/27288-swift-typechecker-getinterfacetypefrominternaltype.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/27299-swift-enumtype-get.swift b/validation-test/compiler_crashers_fixed/27299-swift-enumtype-get.swift similarity index 79% rename from validation-test/compiler_crashers/27299-swift-enumtype-get.swift rename to validation-test/compiler_crashers_fixed/27299-swift-enumtype-get.swift index f5568d1ee9fea..b568aa3c6a54f 100644 --- a/validation-test/compiler_crashers/27299-swift-enumtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27299-swift-enumtype-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/27301-swift-type-walk.swift b/validation-test/compiler_crashers_fixed/27301-swift-type-walk.swift similarity index 80% rename from validation-test/compiler_crashers/27301-swift-type-walk.swift rename to validation-test/compiler_crashers_fixed/27301-swift-type-walk.swift index f529f486d9772..2c7ed11c73327 100644 --- a/validation-test/compiler_crashers/27301-swift-type-walk.swift +++ b/validation-test/compiler_crashers_fixed/27301-swift-type-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/27303-swift-typechecker-substituteinputsugartypeforresult.swift b/validation-test/compiler_crashers_fixed/27303-swift-typechecker-substituteinputsugartypeforresult.swift similarity index 81% rename from validation-test/compiler_crashers/27303-swift-typechecker-substituteinputsugartypeforresult.swift rename to validation-test/compiler_crashers_fixed/27303-swift-typechecker-substituteinputsugartypeforresult.swift index 8ba7e1a934bd8..5dfb4ddbfcd38 100644 --- a/validation-test/compiler_crashers/27303-swift-typechecker-substituteinputsugartypeforresult.swift +++ b/validation-test/compiler_crashers_fixed/27303-swift-typechecker-substituteinputsugartypeforresult.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/27305-swift-markasobjc.swift b/validation-test/compiler_crashers_fixed/27305-swift-markasobjc.swift similarity index 81% rename from validation-test/compiler_crashers/27305-swift-markasobjc.swift rename to validation-test/compiler_crashers_fixed/27305-swift-markasobjc.swift index a0348bccb5e27..238c1cbed668f 100644 --- a/validation-test/compiler_crashers/27305-swift-markasobjc.swift +++ b/validation-test/compiler_crashers_fixed/27305-swift-markasobjc.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/27306-swift-printingdiagnosticconsumer-handlediagnostic.swift b/validation-test/compiler_crashers_fixed/27306-swift-printingdiagnosticconsumer-handlediagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/27306-swift-printingdiagnosticconsumer-handlediagnostic.swift rename to validation-test/compiler_crashers_fixed/27306-swift-printingdiagnosticconsumer-handlediagnostic.swift index ec1acb7ae3129..99f54b3c144b6 100644 --- a/validation-test/compiler_crashers/27306-swift-printingdiagnosticconsumer-handlediagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27306-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) diff --git a/validation-test/compiler_crashers/27308-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27308-swift-inflightdiagnostic.swift similarity index 80% rename from validation-test/compiler_crashers/27308-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27308-swift-inflightdiagnostic.swift index 0ab8e90a6b5e7..e2798aea1a965 100644 --- a/validation-test/compiler_crashers/27308-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27308-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/27312-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/27312-swift-substitutedtype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27312-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/27312-swift-substitutedtype-get.swift index de5a9a13fcfd1..7e7c6890d88d2 100644 --- a/validation-test/compiler_crashers/27312-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27312-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) diff --git a/validation-test/compiler_crashers/27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift b/validation-test/compiler_crashers_fixed/27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift similarity index 83% rename from validation-test/compiler_crashers/27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift rename to validation-test/compiler_crashers_fixed/27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift index 6f9b8157e34a5..297af3afc31db 100644 --- a/validation-test/compiler_crashers/27318-swift-nominaltypedecl-getdeclaredtypeincontext.swift +++ b/validation-test/compiler_crashers_fixed/27318-swift-nominaltypedecl-getdeclaredtypeincontext.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/27326-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27326-swift-conformancelookuptable-updatelookuptable.swift similarity index 79% rename from validation-test/compiler_crashers/27326-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27326-swift-conformancelookuptable-updatelookuptable.swift index fe7d56113e527..493e458714811 100644 --- a/validation-test/compiler_crashers/27326-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27326-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) diff --git a/validation-test/compiler_crashers/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift b/validation-test/compiler_crashers_fixed/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift similarity index 80% rename from validation-test/compiler_crashers/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift rename to validation-test/compiler_crashers_fixed/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift index e7951b56c6f86..f70f5659b4004 100644 --- a/validation-test/compiler_crashers/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift +++ b/validation-test/compiler_crashers_fixed/27334-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.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/27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift b/validation-test/compiler_crashers_fixed/27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift similarity index 80% rename from validation-test/compiler_crashers/27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift rename to validation-test/compiler_crashers_fixed/27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift index cb6a33ef068f3..9f36674ddc3ca 100644 --- a/validation-test/compiler_crashers/27342-swift-constraints-constraintsystem-getfixedtyperecursive.swift +++ b/validation-test/compiler_crashers_fixed/27342-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/27345-swift-modulefile-maybereadpattern.swift b/validation-test/compiler_crashers_fixed/27345-swift-modulefile-maybereadpattern.swift similarity index 81% rename from validation-test/compiler_crashers/27345-swift-modulefile-maybereadpattern.swift rename to validation-test/compiler_crashers_fixed/27345-swift-modulefile-maybereadpattern.swift index 5173e74762526..cd61f618d25dc 100644 --- a/validation-test/compiler_crashers/27345-swift-modulefile-maybereadpattern.swift +++ b/validation-test/compiler_crashers_fixed/27345-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) diff --git a/validation-test/compiler_crashers/27353-void.swift b/validation-test/compiler_crashers_fixed/27353-void.swift similarity index 78% rename from validation-test/compiler_crashers/27353-void.swift rename to validation-test/compiler_crashers_fixed/27353-void.swift index 779ca99a61d6e..a271518358071 100644 --- a/validation-test/compiler_crashers/27353-void.swift +++ b/validation-test/compiler_crashers_fixed/27353-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) diff --git a/validation-test/compiler_crashers/27369-swift-type-transform.swift b/validation-test/compiler_crashers_fixed/27369-swift-type-transform.swift similarity index 92% rename from validation-test/compiler_crashers/27369-swift-type-transform.swift rename to validation-test/compiler_crashers_fixed/27369-swift-type-transform.swift index d30efb6227f54..eb2705a8275d5 100644 --- a/validation-test/compiler_crashers/27369-swift-type-transform.swift +++ b/validation-test/compiler_crashers_fixed/27369-swift-type-transform.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/27372-void.swift b/validation-test/compiler_crashers_fixed/27372-void.swift similarity index 81% rename from validation-test/compiler_crashers/27372-void.swift rename to validation-test/compiler_crashers_fixed/27372-void.swift index 3a22940273dbb..83ff0d8fbd98d 100644 --- a/validation-test/compiler_crashers/27372-void.swift +++ b/validation-test/compiler_crashers_fixed/27372-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) diff --git a/validation-test/compiler_crashers/27375-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/27375-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 82% rename from validation-test/compiler_crashers/27375-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/27375-swift-unqualifiedlookup-unqualifiedlookup.swift index e1f49597f1c76..9e2c1bae6c888 100644 --- a/validation-test/compiler_crashers/27375-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/27375-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) diff --git a/validation-test/compiler_crashers/27378-swift-modulefile-maybereadpattern.swift b/validation-test/compiler_crashers_fixed/27378-swift-modulefile-maybereadpattern.swift similarity index 80% rename from validation-test/compiler_crashers/27378-swift-modulefile-maybereadpattern.swift rename to validation-test/compiler_crashers_fixed/27378-swift-modulefile-maybereadpattern.swift index bbbe384c31b9f..6474d508f2060 100644 --- a/validation-test/compiler_crashers/27378-swift-modulefile-maybereadpattern.swift +++ b/validation-test/compiler_crashers_fixed/27378-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) diff --git a/validation-test/compiler_crashers/27387-swift-structtype-get.swift b/validation-test/compiler_crashers_fixed/27387-swift-structtype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27387-swift-structtype-get.swift rename to validation-test/compiler_crashers_fixed/27387-swift-structtype-get.swift index a08bc633721c6..419bac3460aeb 100644 --- a/validation-test/compiler_crashers/27387-swift-structtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27387-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/27388-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/27388-swift-metatypetype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27388-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/27388-swift-metatypetype-get.swift index 9ed68aa49415d..48c4ddc8c9f8a 100644 --- a/validation-test/compiler_crashers/27388-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/27388-swift-metatypetype-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/27389-swift-typeexpr-typeexpr.swift b/validation-test/compiler_crashers_fixed/27389-swift-typeexpr-typeexpr.swift similarity index 81% rename from validation-test/compiler_crashers/27389-swift-typeexpr-typeexpr.swift rename to validation-test/compiler_crashers_fixed/27389-swift-typeexpr-typeexpr.swift index f2a1cabdb0e4c..a8a40d52e6d2a 100644 --- a/validation-test/compiler_crashers/27389-swift-typeexpr-typeexpr.swift +++ b/validation-test/compiler_crashers_fixed/27389-swift-typeexpr-typeexpr.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/27400-swift-protocolconformance-getinheritedconformance.swift b/validation-test/compiler_crashers_fixed/27400-swift-protocolconformance-getinheritedconformance.swift similarity index 81% rename from validation-test/compiler_crashers/27400-swift-protocolconformance-getinheritedconformance.swift rename to validation-test/compiler_crashers_fixed/27400-swift-protocolconformance-getinheritedconformance.swift index dee3c312372bb..da124935ad8a2 100644 --- a/validation-test/compiler_crashers/27400-swift-protocolconformance-getinheritedconformance.swift +++ b/validation-test/compiler_crashers_fixed/27400-swift-protocolconformance-getinheritedconformance.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/27414-llvm-errs.swift b/validation-test/compiler_crashers_fixed/27414-llvm-errs.swift similarity index 79% rename from validation-test/compiler_crashers/27414-llvm-errs.swift rename to validation-test/compiler_crashers_fixed/27414-llvm-errs.swift index 01be8b89f39c9..f0a2ccaf29a18 100644 --- a/validation-test/compiler_crashers/27414-llvm-errs.swift +++ b/validation-test/compiler_crashers_fixed/27414-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) diff --git a/validation-test/compiler_crashers/27415-swift-namelookup-lookupinmodule.swift b/validation-test/compiler_crashers_fixed/27415-swift-namelookup-lookupinmodule.swift similarity index 80% rename from validation-test/compiler_crashers/27415-swift-namelookup-lookupinmodule.swift rename to validation-test/compiler_crashers_fixed/27415-swift-namelookup-lookupinmodule.swift index 20dc8a637eabb..f20be3dc41838 100644 --- a/validation-test/compiler_crashers/27415-swift-namelookup-lookupinmodule.swift +++ b/validation-test/compiler_crashers_fixed/27415-swift-namelookup-lookupinmodule.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/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift b/validation-test/compiler_crashers_fixed/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift similarity index 80% rename from validation-test/compiler_crashers/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift rename to validation-test/compiler_crashers_fixed/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift index 5393202de9aaa..c57acd6fa30d9 100644 --- a/validation-test/compiler_crashers/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.swift +++ b/validation-test/compiler_crashers_fixed/27417-swift-constraints-constraintsystem-simplifyconformstoconstraint.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/27439-swift-funcdecl-setdeserializedsignature.swift b/validation-test/compiler_crashers_fixed/27439-swift-funcdecl-setdeserializedsignature.swift similarity index 81% rename from validation-test/compiler_crashers/27439-swift-funcdecl-setdeserializedsignature.swift rename to validation-test/compiler_crashers_fixed/27439-swift-funcdecl-setdeserializedsignature.swift index a273cd94bb19a..9ee2414de2e5b 100644 --- a/validation-test/compiler_crashers/27439-swift-funcdecl-setdeserializedsignature.swift +++ b/validation-test/compiler_crashers_fixed/27439-swift-funcdecl-setdeserializedsignature.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/27446-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27446-swift-conformancelookuptable-updatelookuptable.swift similarity index 84% rename from validation-test/compiler_crashers/27446-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27446-swift-conformancelookuptable-updatelookuptable.swift index 4d7208d5e41e5..2f4c6ea3de76a 100644 --- a/validation-test/compiler_crashers/27446-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27446-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) diff --git a/validation-test/compiler_crashers/27450-bool.swift b/validation-test/compiler_crashers_fixed/27450-bool.swift similarity index 79% rename from validation-test/compiler_crashers/27450-bool.swift rename to validation-test/compiler_crashers_fixed/27450-bool.swift index 047543bd72aa5..44a0e8b040c26 100644 --- a/validation-test/compiler_crashers/27450-bool.swift +++ b/validation-test/compiler_crashers_fixed/27450-bool.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/27451-swift-parser-parsedeclstruct.swift b/validation-test/compiler_crashers_fixed/27451-swift-parser-parsedeclstruct.swift similarity index 81% rename from validation-test/compiler_crashers/27451-swift-parser-parsedeclstruct.swift rename to validation-test/compiler_crashers_fixed/27451-swift-parser-parsedeclstruct.swift index 2a3285d89f934..2795aef2b6903 100644 --- a/validation-test/compiler_crashers/27451-swift-parser-parsedeclstruct.swift +++ b/validation-test/compiler_crashers_fixed/27451-swift-parser-parsedeclstruct.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/27453-diagnoseredundantaccessors.swift b/validation-test/compiler_crashers_fixed/27453-diagnoseredundantaccessors.swift similarity index 84% rename from validation-test/compiler_crashers/27453-diagnoseredundantaccessors.swift rename to validation-test/compiler_crashers_fixed/27453-diagnoseredundantaccessors.swift index 8dc192396cd07..4575193785a65 100644 --- a/validation-test/compiler_crashers/27453-diagnoseredundantaccessors.swift +++ b/validation-test/compiler_crashers_fixed/27453-diagnoseredundantaccessors.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/27454-swift-parser-parsetoken.swift b/validation-test/compiler_crashers_fixed/27454-swift-parser-parsetoken.swift similarity index 78% rename from validation-test/compiler_crashers/27454-swift-parser-parsetoken.swift rename to validation-test/compiler_crashers_fixed/27454-swift-parser-parsetoken.swift index 200ac60a42728..dd9736b610177 100644 --- a/validation-test/compiler_crashers/27454-swift-parser-parsetoken.swift +++ b/validation-test/compiler_crashers_fixed/27454-swift-parser-parsetoken.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/27459-swift-genericsignature-get.swift b/validation-test/compiler_crashers_fixed/27459-swift-genericsignature-get.swift similarity index 79% rename from validation-test/compiler_crashers/27459-swift-genericsignature-get.swift rename to validation-test/compiler_crashers_fixed/27459-swift-genericsignature-get.swift index b62d7cb5128e2..25cf8a19917ca 100644 --- a/validation-test/compiler_crashers/27459-swift-genericsignature-get.swift +++ b/validation-test/compiler_crashers_fixed/27459-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) diff --git a/validation-test/compiler_crashers/27460-swift-protocoltype-compareprotocols.swift b/validation-test/compiler_crashers_fixed/27460-swift-protocoltype-compareprotocols.swift similarity index 79% rename from validation-test/compiler_crashers/27460-swift-protocoltype-compareprotocols.swift rename to validation-test/compiler_crashers_fixed/27460-swift-protocoltype-compareprotocols.swift index fddfbe6f94d56..76df3d4f36956 100644 --- a/validation-test/compiler_crashers/27460-swift-protocoltype-compareprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27460-swift-protocoltype-compareprotocols.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/27463-swift-parser-parseexprpostfix.swift b/validation-test/compiler_crashers_fixed/27463-swift-parser-parseexprpostfix.swift similarity index 79% rename from validation-test/compiler_crashers/27463-swift-parser-parseexprpostfix.swift rename to validation-test/compiler_crashers_fixed/27463-swift-parser-parseexprpostfix.swift index 6b0b7b6f01d69..423e4f93dc148 100644 --- a/validation-test/compiler_crashers/27463-swift-parser-parseexprpostfix.swift +++ b/validation-test/compiler_crashers_fixed/27463-swift-parser-parseexprpostfix.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/27474-swift-typechecker-checkdeclarationavailability.swift b/validation-test/compiler_crashers_fixed/27474-swift-typechecker-checkdeclarationavailability.swift similarity index 80% rename from validation-test/compiler_crashers/27474-swift-typechecker-checkdeclarationavailability.swift rename to validation-test/compiler_crashers_fixed/27474-swift-typechecker-checkdeclarationavailability.swift index 222f543eea976..101179a1a6c95 100644 --- a/validation-test/compiler_crashers/27474-swift-typechecker-checkdeclarationavailability.swift +++ b/validation-test/compiler_crashers_fixed/27474-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/27482-swift-parser-parseexprpostfix.swift b/validation-test/compiler_crashers_fixed/27482-swift-parser-parseexprpostfix.swift similarity index 80% rename from validation-test/compiler_crashers/27482-swift-parser-parseexprpostfix.swift rename to validation-test/compiler_crashers_fixed/27482-swift-parser-parseexprpostfix.swift index 5c53bc02979b0..6da7ef40f635d 100644 --- a/validation-test/compiler_crashers/27482-swift-parser-parseexprpostfix.swift +++ b/validation-test/compiler_crashers_fixed/27482-swift-parser-parseexprpostfix.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/27483-swift-namelookup-findlocalval-visitbracestmt.swift b/validation-test/compiler_crashers_fixed/27483-swift-namelookup-findlocalval-visitbracestmt.swift similarity index 82% rename from validation-test/compiler_crashers/27483-swift-namelookup-findlocalval-visitbracestmt.swift rename to validation-test/compiler_crashers_fixed/27483-swift-namelookup-findlocalval-visitbracestmt.swift index 3f56a4b9c3d60..c05173b4c18d0 100644 --- a/validation-test/compiler_crashers/27483-swift-namelookup-findlocalval-visitbracestmt.swift +++ b/validation-test/compiler_crashers_fixed/27483-swift-namelookup-findlocalval-visitbracestmt.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/27488-swift-conformancelookuptable-expandimpliedconformances.swift b/validation-test/compiler_crashers_fixed/27488-swift-conformancelookuptable-expandimpliedconformances.swift similarity index 82% rename from validation-test/compiler_crashers/27488-swift-conformancelookuptable-expandimpliedconformances.swift rename to validation-test/compiler_crashers_fixed/27488-swift-conformancelookuptable-expandimpliedconformances.swift index 422fd6e8cfe8d..e76f532035637 100644 --- a/validation-test/compiler_crashers/27488-swift-conformancelookuptable-expandimpliedconformances.swift +++ b/validation-test/compiler_crashers_fixed/27488-swift-conformancelookuptable-expandimpliedconformances.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/27490-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27490-swift-inflightdiagnostic.swift similarity index 82% rename from validation-test/compiler_crashers/27490-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27490-swift-inflightdiagnostic.swift index 25bb8411b24d6..9ac6dd77f4784 100644 --- a/validation-test/compiler_crashers/27490-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27490-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/27494-swift-conformancelookuptable-lookupconformance.swift b/validation-test/compiler_crashers_fixed/27494-swift-conformancelookuptable-lookupconformance.swift similarity index 81% rename from validation-test/compiler_crashers/27494-swift-conformancelookuptable-lookupconformance.swift rename to validation-test/compiler_crashers_fixed/27494-swift-conformancelookuptable-lookupconformance.swift index a846df5ea38d6..8a72f8e680d46 100644 --- a/validation-test/compiler_crashers/27494-swift-conformancelookuptable-lookupconformance.swift +++ b/validation-test/compiler_crashers_fixed/27494-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/27495-swift-typechecker-addimplicitconstructors.swift b/validation-test/compiler_crashers_fixed/27495-swift-typechecker-addimplicitconstructors.swift similarity index 81% rename from validation-test/compiler_crashers/27495-swift-typechecker-addimplicitconstructors.swift rename to validation-test/compiler_crashers_fixed/27495-swift-typechecker-addimplicitconstructors.swift index b5bd0e41f296a..31530f2a1c60c 100644 --- a/validation-test/compiler_crashers/27495-swift-typechecker-addimplicitconstructors.swift +++ b/validation-test/compiler_crashers_fixed/27495-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/27501-swift-namelookup-lookupinmodule.swift b/validation-test/compiler_crashers_fixed/27501-swift-namelookup-lookupinmodule.swift similarity index 82% rename from validation-test/compiler_crashers/27501-swift-namelookup-lookupinmodule.swift rename to validation-test/compiler_crashers_fixed/27501-swift-namelookup-lookupinmodule.swift index f932ce43db2d0..b67961670f1bf 100644 --- a/validation-test/compiler_crashers/27501-swift-namelookup-lookupinmodule.swift +++ b/validation-test/compiler_crashers_fixed/27501-swift-namelookup-lookupinmodule.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/27505-swift-diagnosticengine-emitdiagnostic.swift b/validation-test/compiler_crashers_fixed/27505-swift-diagnosticengine-emitdiagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/27505-swift-diagnosticengine-emitdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27505-swift-diagnosticengine-emitdiagnostic.swift index 6a0826eebb20c..3b57557a7f02a 100644 --- a/validation-test/compiler_crashers/27505-swift-diagnosticengine-emitdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27505-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/27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift b/validation-test/compiler_crashers_fixed/27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift similarity index 82% rename from validation-test/compiler_crashers/27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift index cf2738059f04c..abfd8937c081e 100644 --- a/validation-test/compiler_crashers/27512-llvm-foldingset-swift-genericfunctiontype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27512-llvm-foldingset-swift-genericfunctiontype-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/27515-swift-typechecker-overapproximateosversionsatlocation.swift b/validation-test/compiler_crashers_fixed/27515-swift-typechecker-overapproximateosversionsatlocation.swift similarity index 82% rename from validation-test/compiler_crashers/27515-swift-typechecker-overapproximateosversionsatlocation.swift rename to validation-test/compiler_crashers_fixed/27515-swift-typechecker-overapproximateosversionsatlocation.swift index 63255c4938d95..8601287f36ab9 100644 --- a/validation-test/compiler_crashers/27515-swift-typechecker-overapproximateosversionsatlocation.swift +++ b/validation-test/compiler_crashers_fixed/27515-swift-typechecker-overapproximateosversionsatlocation.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/27516-swift-nominaltypedecl-classifyasoptionaltype.swift b/validation-test/compiler_crashers_fixed/27516-swift-nominaltypedecl-classifyasoptionaltype.swift similarity index 80% rename from validation-test/compiler_crashers/27516-swift-nominaltypedecl-classifyasoptionaltype.swift rename to validation-test/compiler_crashers_fixed/27516-swift-nominaltypedecl-classifyasoptionaltype.swift index 890d13c29d5b5..1dc3ea085f1ce 100644 --- a/validation-test/compiler_crashers/27516-swift-nominaltypedecl-classifyasoptionaltype.swift +++ b/validation-test/compiler_crashers_fixed/27516-swift-nominaltypedecl-classifyasoptionaltype.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/27526-swift-structtype-get.swift b/validation-test/compiler_crashers_fixed/27526-swift-structtype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27526-swift-structtype-get.swift rename to validation-test/compiler_crashers_fixed/27526-swift-structtype-get.swift index 81463f024b5cb..d907f9887e1f7 100644 --- a/validation-test/compiler_crashers/27526-swift-structtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27526-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/27530-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/27530-resolveidenttypecomponent.swift similarity index 79% rename from validation-test/compiler_crashers/27530-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/27530-resolveidenttypecomponent.swift index 521883a604455..f3daadd8634f2 100644 --- a/validation-test/compiler_crashers/27530-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/27530-resolveidenttypecomponent.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/27531-swift-typechecker-coercepatterntotype.swift b/validation-test/compiler_crashers_fixed/27531-swift-typechecker-coercepatterntotype.swift similarity index 81% rename from validation-test/compiler_crashers/27531-swift-typechecker-coercepatterntotype.swift rename to validation-test/compiler_crashers_fixed/27531-swift-typechecker-coercepatterntotype.swift index 1a19b4f764365..a016eecad017b 100644 --- a/validation-test/compiler_crashers/27531-swift-typechecker-coercepatterntotype.swift +++ b/validation-test/compiler_crashers_fixed/27531-swift-typechecker-coercepatterntotype.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/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift b/validation-test/compiler_crashers_fixed/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift similarity index 79% rename from validation-test/compiler_crashers/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift rename to validation-test/compiler_crashers_fixed/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift index 54b3f2b5bf3b3..4fc7c579f2f75 100644 --- a/validation-test/compiler_crashers/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.swift +++ b/validation-test/compiler_crashers_fixed/27532-swift-constraints-constraintsystem-matchdeepequalitytypes.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/27539-swift-parser-parsetoken.swift b/validation-test/compiler_crashers_fixed/27539-swift-parser-parsetoken.swift similarity index 81% rename from validation-test/compiler_crashers/27539-swift-parser-parsetoken.swift rename to validation-test/compiler_crashers_fixed/27539-swift-parser-parsetoken.swift index 3af8085e4ec25..d471459eadfd4 100644 --- a/validation-test/compiler_crashers/27539-swift-parser-parsetoken.swift +++ b/validation-test/compiler_crashers_fixed/27539-swift-parser-parsetoken.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/27540-swift-type-walk.swift b/validation-test/compiler_crashers_fixed/27540-swift-type-walk.swift similarity index 82% rename from validation-test/compiler_crashers/27540-swift-type-walk.swift rename to validation-test/compiler_crashers_fixed/27540-swift-type-walk.swift index fceab8e7417b1..12371ec95c2c5 100644 --- a/validation-test/compiler_crashers/27540-swift-type-walk.swift +++ b/validation-test/compiler_crashers_fixed/27540-swift-type-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/27542-swift-genericfunctiontype-get.swift b/validation-test/compiler_crashers_fixed/27542-swift-genericfunctiontype-get.swift similarity index 82% rename from validation-test/compiler_crashers/27542-swift-genericfunctiontype-get.swift rename to validation-test/compiler_crashers_fixed/27542-swift-genericfunctiontype-get.swift index f7f30d4dee7d5..370b052e3ff8d 100644 --- a/validation-test/compiler_crashers/27542-swift-genericfunctiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27542-swift-genericfunctiontype-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/27543-swift-typechecker-checkgenericarguments.swift b/validation-test/compiler_crashers_fixed/27543-swift-typechecker-checkgenericarguments.swift similarity index 83% rename from validation-test/compiler_crashers/27543-swift-typechecker-checkgenericarguments.swift rename to validation-test/compiler_crashers_fixed/27543-swift-typechecker-checkgenericarguments.swift index 9e291e5ee40e0..0ef16033f1ff9 100644 --- a/validation-test/compiler_crashers/27543-swift-typechecker-checkgenericarguments.swift +++ b/validation-test/compiler_crashers_fixed/27543-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) diff --git a/validation-test/compiler_crashers/27554-swift-modulefile-gettype.swift b/validation-test/compiler_crashers_fixed/27554-swift-modulefile-gettype.swift similarity index 80% rename from validation-test/compiler_crashers/27554-swift-modulefile-gettype.swift rename to validation-test/compiler_crashers_fixed/27554-swift-modulefile-gettype.swift index 2452aecd5de77..40d6a3de75906 100644 --- a/validation-test/compiler_crashers/27554-swift-modulefile-gettype.swift +++ b/validation-test/compiler_crashers_fixed/27554-swift-modulefile-gettype.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/27562-swift-genericsignature-get.swift b/validation-test/compiler_crashers_fixed/27562-swift-genericsignature-get.swift similarity index 80% rename from validation-test/compiler_crashers/27562-swift-genericsignature-get.swift rename to validation-test/compiler_crashers_fixed/27562-swift-genericsignature-get.swift index a04748fc89b2a..6a4f115a80110 100644 --- a/validation-test/compiler_crashers/27562-swift-genericsignature-get.swift +++ b/validation-test/compiler_crashers_fixed/27562-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) diff --git a/validation-test/compiler_crashers/27563-swift-funcdecl-isunaryoperator.swift b/validation-test/compiler_crashers_fixed/27563-swift-funcdecl-isunaryoperator.swift similarity index 82% rename from validation-test/compiler_crashers/27563-swift-funcdecl-isunaryoperator.swift rename to validation-test/compiler_crashers_fixed/27563-swift-funcdecl-isunaryoperator.swift index ae279aa6736fe..0ccd6089895f0 100644 --- a/validation-test/compiler_crashers/27563-swift-funcdecl-isunaryoperator.swift +++ b/validation-test/compiler_crashers_fixed/27563-swift-funcdecl-isunaryoperator.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/27575-swift-type-subst.swift b/validation-test/compiler_crashers_fixed/27575-swift-type-subst.swift similarity index 81% rename from validation-test/compiler_crashers/27575-swift-type-subst.swift rename to validation-test/compiler_crashers_fixed/27575-swift-type-subst.swift index 30b9916d63680..60576e2a8919f 100644 --- a/validation-test/compiler_crashers/27575-swift-type-subst.swift +++ b/validation-test/compiler_crashers_fixed/27575-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) diff --git a/validation-test/compiler_crashers/27577-swift-funcdecl-setdeserializedsignature.swift b/validation-test/compiler_crashers_fixed/27577-swift-funcdecl-setdeserializedsignature.swift similarity index 81% rename from validation-test/compiler_crashers/27577-swift-funcdecl-setdeserializedsignature.swift rename to validation-test/compiler_crashers_fixed/27577-swift-funcdecl-setdeserializedsignature.swift index fb1c371007a18..a38bb5f8227c1 100644 --- a/validation-test/compiler_crashers/27577-swift-funcdecl-setdeserializedsignature.swift +++ b/validation-test/compiler_crashers_fixed/27577-swift-funcdecl-setdeserializedsignature.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/27579-vtable.swift b/validation-test/compiler_crashers_fixed/27579-vtable.swift similarity index 78% rename from validation-test/compiler_crashers/27579-vtable.swift rename to validation-test/compiler_crashers_fixed/27579-vtable.swift index 5fecc2a36a8c2..1e4b7233030aa 100644 --- a/validation-test/compiler_crashers/27579-vtable.swift +++ b/validation-test/compiler_crashers_fixed/27579-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/27581-swift-modulefile-maybereadgenericparams.swift b/validation-test/compiler_crashers_fixed/27581-swift-modulefile-maybereadgenericparams.swift similarity index 80% rename from validation-test/compiler_crashers/27581-swift-modulefile-maybereadgenericparams.swift rename to validation-test/compiler_crashers_fixed/27581-swift-modulefile-maybereadgenericparams.swift index 765cd9645770b..1fe01ff069909 100644 --- a/validation-test/compiler_crashers/27581-swift-modulefile-maybereadgenericparams.swift +++ b/validation-test/compiler_crashers_fixed/27581-swift-modulefile-maybereadgenericparams.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/27585-swift-astcontext-loadextensions.swift b/validation-test/compiler_crashers_fixed/27585-swift-astcontext-loadextensions.swift similarity index 82% rename from validation-test/compiler_crashers/27585-swift-astcontext-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27585-swift-astcontext-loadextensions.swift index 3ffa8520167d0..d4a6034ea720e 100644 --- a/validation-test/compiler_crashers/27585-swift-astcontext-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27585-swift-astcontext-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/27595-swift-parser-parsedeclvar.swift b/validation-test/compiler_crashers_fixed/27595-swift-parser-parsedeclvar.swift similarity index 81% rename from validation-test/compiler_crashers/27595-swift-parser-parsedeclvar.swift rename to validation-test/compiler_crashers_fixed/27595-swift-parser-parsedeclvar.swift index 67e56dec47e5e..bec97e4880d7c 100644 --- a/validation-test/compiler_crashers/27595-swift-parser-parsedeclvar.swift +++ b/validation-test/compiler_crashers_fixed/27595-swift-parser-parsedeclvar.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/27600-swift-constraints-constraintsystem-recordopenedtypes.swift b/validation-test/compiler_crashers_fixed/27600-swift-constraints-constraintsystem-recordopenedtypes.swift similarity index 80% rename from validation-test/compiler_crashers/27600-swift-constraints-constraintsystem-recordopenedtypes.swift rename to validation-test/compiler_crashers_fixed/27600-swift-constraints-constraintsystem-recordopenedtypes.swift index 9a124e8668813..2f67590c288f2 100644 --- a/validation-test/compiler_crashers/27600-swift-constraints-constraintsystem-recordopenedtypes.swift +++ b/validation-test/compiler_crashers_fixed/27600-swift-constraints-constraintsystem-recordopenedtypes.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/27604-swift-valuedecl-getoverloadsignature.swift b/validation-test/compiler_crashers_fixed/27604-swift-valuedecl-getoverloadsignature.swift similarity index 83% rename from validation-test/compiler_crashers/27604-swift-valuedecl-getoverloadsignature.swift rename to validation-test/compiler_crashers_fixed/27604-swift-valuedecl-getoverloadsignature.swift index 8da067957fa40..189353c5066cd 100644 --- a/validation-test/compiler_crashers/27604-swift-valuedecl-getoverloadsignature.swift +++ b/validation-test/compiler_crashers_fixed/27604-swift-valuedecl-getoverloadsignature.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/27608-llvm-errs.swift b/validation-test/compiler_crashers_fixed/27608-llvm-errs.swift similarity index 79% rename from validation-test/compiler_crashers/27608-llvm-errs.swift rename to validation-test/compiler_crashers_fixed/27608-llvm-errs.swift index 5985293609020..4147981b8db27 100644 --- a/validation-test/compiler_crashers/27608-llvm-errs.swift +++ b/validation-test/compiler_crashers_fixed/27608-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) diff --git a/validation-test/compiler_crashers/27609-std-function-func-checkaccessibility.swift b/validation-test/compiler_crashers_fixed/27609-std-function-func-checkaccessibility.swift similarity index 84% rename from validation-test/compiler_crashers/27609-std-function-func-checkaccessibility.swift rename to validation-test/compiler_crashers_fixed/27609-std-function-func-checkaccessibility.swift index a6e9b9d4c3cc2..be30585903698 100644 --- a/validation-test/compiler_crashers/27609-std-function-func-checkaccessibility.swift +++ b/validation-test/compiler_crashers_fixed/27609-std-function-func-checkaccessibility.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/27617-swift-markasobjc.swift b/validation-test/compiler_crashers_fixed/27617-swift-markasobjc.swift similarity index 81% rename from validation-test/compiler_crashers/27617-swift-markasobjc.swift rename to validation-test/compiler_crashers_fixed/27617-swift-markasobjc.swift index 86b4aec616578..3909cba31dd8c 100644 --- a/validation-test/compiler_crashers/27617-swift-markasobjc.swift +++ b/validation-test/compiler_crashers_fixed/27617-swift-markasobjc.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/27621-swift-getbuiltinvaluedecl.swift b/validation-test/compiler_crashers_fixed/27621-swift-getbuiltinvaluedecl.swift similarity index 82% rename from validation-test/compiler_crashers/27621-swift-getbuiltinvaluedecl.swift rename to validation-test/compiler_crashers_fixed/27621-swift-getbuiltinvaluedecl.swift index daf12d54a3bf3..45cc346c5ab49 100644 --- a/validation-test/compiler_crashers/27621-swift-getbuiltinvaluedecl.swift +++ b/validation-test/compiler_crashers_fixed/27621-swift-getbuiltinvaluedecl.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/27625-swift-typechecker-typecheckpattern.swift b/validation-test/compiler_crashers_fixed/27625-swift-typechecker-typecheckpattern.swift similarity index 82% rename from validation-test/compiler_crashers/27625-swift-typechecker-typecheckpattern.swift rename to validation-test/compiler_crashers_fixed/27625-swift-typechecker-typecheckpattern.swift index 86271edb48712..6a201aa1c11ac 100644 --- a/validation-test/compiler_crashers/27625-swift-typechecker-typecheckpattern.swift +++ b/validation-test/compiler_crashers_fixed/27625-swift-typechecker-typecheckpattern.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/27626-llvm-smdiagnostic-smdiagnostic.swift b/validation-test/compiler_crashers_fixed/27626-llvm-smdiagnostic-smdiagnostic.swift similarity index 79% rename from validation-test/compiler_crashers/27626-llvm-smdiagnostic-smdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27626-llvm-smdiagnostic-smdiagnostic.swift index c9f6c86120c03..d44959d864ed7 100644 --- a/validation-test/compiler_crashers/27626-llvm-smdiagnostic-smdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27626-llvm-smdiagnostic-smdiagnostic.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/27628-swift-abstractclosureexpr-setparams.swift b/validation-test/compiler_crashers_fixed/27628-swift-abstractclosureexpr-setparams.swift similarity index 97% rename from validation-test/compiler_crashers/27628-swift-abstractclosureexpr-setparams.swift rename to validation-test/compiler_crashers_fixed/27628-swift-abstractclosureexpr-setparams.swift index 52f555701ef7b..9c26341bdc9e0 100644 --- a/validation-test/compiler_crashers/27628-swift-abstractclosureexpr-setparams.swift +++ b/validation-test/compiler_crashers_fixed/27628-swift-abstractclosureexpr-setparams.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/27630-swift-scopeinfo-addtoscope.swift b/validation-test/compiler_crashers_fixed/27630-swift-scopeinfo-addtoscope.swift similarity index 81% rename from validation-test/compiler_crashers/27630-swift-scopeinfo-addtoscope.swift rename to validation-test/compiler_crashers_fixed/27630-swift-scopeinfo-addtoscope.swift index 5e4b981f9766f..fbbe09a667606 100644 --- a/validation-test/compiler_crashers/27630-swift-scopeinfo-addtoscope.swift +++ b/validation-test/compiler_crashers_fixed/27630-swift-scopeinfo-addtoscope.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/27633-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27633-swift-inflightdiagnostic.swift similarity index 83% rename from validation-test/compiler_crashers/27633-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27633-swift-inflightdiagnostic.swift index b1a2d78e61c1b..c1b8083b30a8c 100644 --- a/validation-test/compiler_crashers/27633-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27633-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/27634-swift-lexer-kindofidentifier.swift b/validation-test/compiler_crashers_fixed/27634-swift-lexer-kindofidentifier.swift similarity index 80% rename from validation-test/compiler_crashers/27634-swift-lexer-kindofidentifier.swift rename to validation-test/compiler_crashers_fixed/27634-swift-lexer-kindofidentifier.swift index 8a132e96011d3..8d6a058f77c52 100644 --- a/validation-test/compiler_crashers/27634-swift-lexer-kindofidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27634-swift-lexer-kindofidentifier.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/27640-swift-functiontype-get.swift b/validation-test/compiler_crashers_fixed/27640-swift-functiontype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27640-swift-functiontype-get.swift rename to validation-test/compiler_crashers_fixed/27640-swift-functiontype-get.swift index 1eb7a04ce4dde..9e059ee56c823 100644 --- a/validation-test/compiler_crashers/27640-swift-functiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27640-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/27642-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/27642-swift-inflightdiagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/27642-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/27642-swift-inflightdiagnostic.swift index f74e8e02a6dbe..d929348b1aa59 100644 --- a/validation-test/compiler_crashers/27642-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/27642-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/27643-swift-valuedecl-settype.swift b/validation-test/compiler_crashers_fixed/27643-swift-valuedecl-settype.swift similarity index 80% rename from validation-test/compiler_crashers/27643-swift-valuedecl-settype.swift rename to validation-test/compiler_crashers_fixed/27643-swift-valuedecl-settype.swift index ebc9a9d09797e..ab3c1707a836f 100644 --- a/validation-test/compiler_crashers/27643-swift-valuedecl-settype.swift +++ b/validation-test/compiler_crashers_fixed/27643-swift-valuedecl-settype.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/27650-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/27650-swift-metatypetype-get.swift similarity index 82% rename from validation-test/compiler_crashers/27650-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/27650-swift-metatypetype-get.swift index 4669e2a6d3307..4645adc751245 100644 --- a/validation-test/compiler_crashers/27650-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/27650-swift-metatypetype-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/27652-swift-typechecker-checkdeclattributes.swift b/validation-test/compiler_crashers_fixed/27652-swift-typechecker-checkdeclattributes.swift similarity index 83% rename from validation-test/compiler_crashers/27652-swift-typechecker-checkdeclattributes.swift rename to validation-test/compiler_crashers_fixed/27652-swift-typechecker-checkdeclattributes.swift index 600380439d253..7846781545f5d 100644 --- a/validation-test/compiler_crashers/27652-swift-typechecker-checkdeclattributes.swift +++ b/validation-test/compiler_crashers_fixed/27652-swift-typechecker-checkdeclattributes.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/27669-swift-parser-skipsingle.swift b/validation-test/compiler_crashers_fixed/27669-swift-parser-skipsingle.swift similarity index 83% rename from validation-test/compiler_crashers/27669-swift-parser-skipsingle.swift rename to validation-test/compiler_crashers_fixed/27669-swift-parser-skipsingle.swift index da50f82cfbe36..aba6ef01e3a12 100644 --- a/validation-test/compiler_crashers/27669-swift-parser-skipsingle.swift +++ b/validation-test/compiler_crashers_fixed/27669-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) diff --git a/validation-test/compiler_crashers/27670-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/27670-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 79% rename from validation-test/compiler_crashers/27670-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/27670-swift-unqualifiedlookup-unqualifiedlookup.swift index 73215dd4f190a..a05bc42c01f89 100644 --- a/validation-test/compiler_crashers/27670-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/27670-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) diff --git a/validation-test/compiler_crashers/27673-swift-parser-parseidentifier.swift b/validation-test/compiler_crashers_fixed/27673-swift-parser-parseidentifier.swift similarity index 79% rename from validation-test/compiler_crashers/27673-swift-parser-parseidentifier.swift rename to validation-test/compiler_crashers_fixed/27673-swift-parser-parseidentifier.swift index 87a0c094f18c1..c49ad6f3ceba8 100644 --- a/validation-test/compiler_crashers/27673-swift-parser-parseidentifier.swift +++ b/validation-test/compiler_crashers_fixed/27673-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/27674-swift-extensiondecl-getmembers.swift b/validation-test/compiler_crashers_fixed/27674-swift-extensiondecl-getmembers.swift similarity index 83% rename from validation-test/compiler_crashers/27674-swift-extensiondecl-getmembers.swift rename to validation-test/compiler_crashers_fixed/27674-swift-extensiondecl-getmembers.swift index e98b2cfb388e6..b7cfdfea5afba 100644 --- a/validation-test/compiler_crashers/27674-swift-extensiondecl-getmembers.swift +++ b/validation-test/compiler_crashers_fixed/27674-swift-extensiondecl-getmembers.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/27676-swift-moduledecl-lookupvalue.swift b/validation-test/compiler_crashers_fixed/27676-swift-moduledecl-lookupvalue.swift similarity index 80% rename from validation-test/compiler_crashers/27676-swift-moduledecl-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/27676-swift-moduledecl-lookupvalue.swift index 0f858bf793706..d83a855d25307 100644 --- a/validation-test/compiler_crashers/27676-swift-moduledecl-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/27676-swift-moduledecl-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/27686-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27686-swift-conformancelookuptable-updatelookuptable.swift similarity index 81% rename from validation-test/compiler_crashers/27686-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27686-swift-conformancelookuptable-updatelookuptable.swift index ccf4ea1b5a24c..3e62bf7100e7e 100644 --- a/validation-test/compiler_crashers/27686-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27686-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) diff --git a/validation-test/compiler_crashers/27694-swift-nominaltypedecl-preparelookuptable.swift b/validation-test/compiler_crashers_fixed/27694-swift-nominaltypedecl-preparelookuptable.swift similarity index 82% rename from validation-test/compiler_crashers/27694-swift-nominaltypedecl-preparelookuptable.swift rename to validation-test/compiler_crashers_fixed/27694-swift-nominaltypedecl-preparelookuptable.swift index d146195ee4ca0..4aa0f44763045 100644 --- a/validation-test/compiler_crashers/27694-swift-nominaltypedecl-preparelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27694-swift-nominaltypedecl-preparelookuptable.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/27701-swift-getllvmintrinsicid.swift b/validation-test/compiler_crashers_fixed/27701-swift-getllvmintrinsicid.swift similarity index 84% rename from validation-test/compiler_crashers/27701-swift-getllvmintrinsicid.swift rename to validation-test/compiler_crashers_fixed/27701-swift-getllvmintrinsicid.swift index 9f0b328ab863f..3ce1f1cf4a69a 100644 --- a/validation-test/compiler_crashers/27701-swift-getllvmintrinsicid.swift +++ b/validation-test/compiler_crashers_fixed/27701-swift-getllvmintrinsicid.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/27709-swift-removeshadoweddecls.swift b/validation-test/compiler_crashers_fixed/27709-swift-removeshadoweddecls.swift similarity index 80% rename from validation-test/compiler_crashers/27709-swift-removeshadoweddecls.swift rename to validation-test/compiler_crashers_fixed/27709-swift-removeshadoweddecls.swift index a280860467313..dc9420171bf6b 100644 --- a/validation-test/compiler_crashers/27709-swift-removeshadoweddecls.swift +++ b/validation-test/compiler_crashers_fixed/27709-swift-removeshadoweddecls.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/27710-swift-lexer-getlocforendoftoken.swift b/validation-test/compiler_crashers_fixed/27710-swift-lexer-getlocforendoftoken.swift similarity index 78% rename from validation-test/compiler_crashers/27710-swift-lexer-getlocforendoftoken.swift rename to validation-test/compiler_crashers_fixed/27710-swift-lexer-getlocforendoftoken.swift index b5438a9c810bf..ca43c14529198 100644 --- a/validation-test/compiler_crashers/27710-swift-lexer-getlocforendoftoken.swift +++ b/validation-test/compiler_crashers_fixed/27710-swift-lexer-getlocforendoftoken.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/27711-swift-declcontext-getlocalconformances.swift b/validation-test/compiler_crashers_fixed/27711-swift-declcontext-getlocalconformances.swift similarity index 83% rename from validation-test/compiler_crashers/27711-swift-declcontext-getlocalconformances.swift rename to validation-test/compiler_crashers_fixed/27711-swift-declcontext-getlocalconformances.swift index d500001af8c38..f0af13ac00bea 100644 --- a/validation-test/compiler_crashers/27711-swift-declcontext-getlocalconformances.swift +++ b/validation-test/compiler_crashers_fixed/27711-swift-declcontext-getlocalconformances.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/27727-swift-abstractclosureexpr-setparams.swift b/validation-test/compiler_crashers_fixed/27727-swift-abstractclosureexpr-setparams.swift similarity index 84% rename from validation-test/compiler_crashers/27727-swift-abstractclosureexpr-setparams.swift rename to validation-test/compiler_crashers_fixed/27727-swift-abstractclosureexpr-setparams.swift index a835b60256541..995515fdf7dc7 100644 --- a/validation-test/compiler_crashers/27727-swift-abstractclosureexpr-setparams.swift +++ b/validation-test/compiler_crashers_fixed/27727-swift-abstractclosureexpr-setparams.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/27739-swift-conformancelookuptable-resolveconformances.swift b/validation-test/compiler_crashers_fixed/27739-swift-conformancelookuptable-resolveconformances.swift similarity index 81% rename from validation-test/compiler_crashers/27739-swift-conformancelookuptable-resolveconformances.swift rename to validation-test/compiler_crashers_fixed/27739-swift-conformancelookuptable-resolveconformances.swift index fc805f2f1969c..9d5fc10a409cb 100644 --- a/validation-test/compiler_crashers/27739-swift-conformancelookuptable-resolveconformances.swift +++ b/validation-test/compiler_crashers_fixed/27739-swift-conformancelookuptable-resolveconformances.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/27747-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/27747-swift-typebase-getcanonicaltype.swift similarity index 81% rename from validation-test/compiler_crashers/27747-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/27747-swift-typebase-getcanonicaltype.swift index 5fd4915ddcc0b..f1a1217080d0b 100644 --- a/validation-test/compiler_crashers/27747-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/27747-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/27749-swift-archetypetype-getnew.swift b/validation-test/compiler_crashers_fixed/27749-swift-archetypetype-getnew.swift similarity index 82% rename from validation-test/compiler_crashers/27749-swift-archetypetype-getnew.swift rename to validation-test/compiler_crashers_fixed/27749-swift-archetypetype-getnew.swift index 89f009bb06537..766b319e1c5e1 100644 --- a/validation-test/compiler_crashers/27749-swift-archetypetype-getnew.swift +++ b/validation-test/compiler_crashers_fixed/27749-swift-archetypetype-getnew.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/27756-swift-modulefile-gettype.swift b/validation-test/compiler_crashers_fixed/27756-swift-modulefile-gettype.swift similarity index 79% rename from validation-test/compiler_crashers/27756-swift-modulefile-gettype.swift rename to validation-test/compiler_crashers_fixed/27756-swift-modulefile-gettype.swift index 778871fe1e161..fa76f403becbd 100644 --- a/validation-test/compiler_crashers/27756-swift-modulefile-gettype.swift +++ b/validation-test/compiler_crashers_fixed/27756-swift-modulefile-gettype.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/27766-swift-constraints-solution-solution.swift b/validation-test/compiler_crashers_fixed/27766-swift-constraints-solution-solution.swift similarity index 79% rename from validation-test/compiler_crashers/27766-swift-constraints-solution-solution.swift rename to validation-test/compiler_crashers_fixed/27766-swift-constraints-solution-solution.swift index 5236dc45a86b0..b64d55cafb5f1 100644 --- a/validation-test/compiler_crashers/27766-swift-constraints-solution-solution.swift +++ b/validation-test/compiler_crashers_fixed/27766-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/27769-swift-patternbindingdecl-create.swift b/validation-test/compiler_crashers_fixed/27769-swift-patternbindingdecl-create.swift similarity index 81% rename from validation-test/compiler_crashers/27769-swift-patternbindingdecl-create.swift rename to validation-test/compiler_crashers_fixed/27769-swift-patternbindingdecl-create.swift index ff9271634780a..fb91b60fab1c9 100644 --- a/validation-test/compiler_crashers/27769-swift-patternbindingdecl-create.swift +++ b/validation-test/compiler_crashers_fixed/27769-swift-patternbindingdecl-create.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/27773-swift-typechecker-getinterfacetypefrominternaltype.swift b/validation-test/compiler_crashers_fixed/27773-swift-typechecker-getinterfacetypefrominternaltype.swift similarity index 80% rename from validation-test/compiler_crashers/27773-swift-typechecker-getinterfacetypefrominternaltype.swift rename to validation-test/compiler_crashers_fixed/27773-swift-typechecker-getinterfacetypefrominternaltype.swift index 0801cbc1da4e5..474a87ac1f374 100644 --- a/validation-test/compiler_crashers/27773-swift-typechecker-getinterfacetypefrominternaltype.swift +++ b/validation-test/compiler_crashers_fixed/27773-swift-typechecker-getinterfacetypefrominternaltype.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/27774-filtervalues.swift b/validation-test/compiler_crashers_fixed/27774-filtervalues.swift similarity index 80% rename from validation-test/compiler_crashers/27774-filtervalues.swift rename to validation-test/compiler_crashers_fixed/27774-filtervalues.swift index 896714610cb51..998b7f1bac1aa 100644 --- a/validation-test/compiler_crashers/27774-filtervalues.swift +++ b/validation-test/compiler_crashers_fixed/27774-filtervalues.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/27777-swift-clangimporter-loadextensions.swift b/validation-test/compiler_crashers_fixed/27777-swift-clangimporter-loadextensions.swift similarity index 79% rename from validation-test/compiler_crashers/27777-swift-clangimporter-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27777-swift-clangimporter-loadextensions.swift index 78e7110b0ebf0..640fe4b9809ff 100644 --- a/validation-test/compiler_crashers/27777-swift-clangimporter-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27777-swift-clangimporter-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/27780-swift-conformancelookuptable-lookupconformances.swift b/validation-test/compiler_crashers_fixed/27780-swift-conformancelookuptable-lookupconformances.swift similarity index 80% rename from validation-test/compiler_crashers/27780-swift-conformancelookuptable-lookupconformances.swift rename to validation-test/compiler_crashers_fixed/27780-swift-conformancelookuptable-lookupconformances.swift index bdc34707fff29..c3afe56cae7fb 100644 --- a/validation-test/compiler_crashers/27780-swift-conformancelookuptable-lookupconformances.swift +++ b/validation-test/compiler_crashers_fixed/27780-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/27782-swift-genericsignature-profile.swift b/validation-test/compiler_crashers_fixed/27782-swift-genericsignature-profile.swift similarity index 81% rename from validation-test/compiler_crashers/27782-swift-genericsignature-profile.swift rename to validation-test/compiler_crashers_fixed/27782-swift-genericsignature-profile.swift index 8861e63fa42fa..19190b969c490 100644 --- a/validation-test/compiler_crashers/27782-swift-genericsignature-profile.swift +++ b/validation-test/compiler_crashers_fixed/27782-swift-genericsignature-profile.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/27783-swift-genericparamlist-deriveallarchetypes.swift b/validation-test/compiler_crashers_fixed/27783-swift-genericparamlist-deriveallarchetypes.swift similarity index 78% rename from validation-test/compiler_crashers/27783-swift-genericparamlist-deriveallarchetypes.swift rename to validation-test/compiler_crashers_fixed/27783-swift-genericparamlist-deriveallarchetypes.swift index 33813175bffcc..eb97dcd0adb5a 100644 --- a/validation-test/compiler_crashers/27783-swift-genericparamlist-deriveallarchetypes.swift +++ b/validation-test/compiler_crashers_fixed/27783-swift-genericparamlist-deriveallarchetypes.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/27791-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27791-swift-conformancelookuptable-updatelookuptable.swift similarity index 80% rename from validation-test/compiler_crashers/27791-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27791-swift-conformancelookuptable-updatelookuptable.swift index de0dceb0efbb7..ad012496a89ce 100644 --- a/validation-test/compiler_crashers/27791-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27791-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) diff --git a/validation-test/compiler_crashers/27795-swift-typebase-isequal.swift b/validation-test/compiler_crashers_fixed/27795-swift-typebase-isequal.swift similarity index 78% rename from validation-test/compiler_crashers/27795-swift-typebase-isequal.swift rename to validation-test/compiler_crashers_fixed/27795-swift-typebase-isequal.swift index a9785d1710e5b..d3696de4e7722 100644 --- a/validation-test/compiler_crashers/27795-swift-typebase-isequal.swift +++ b/validation-test/compiler_crashers_fixed/27795-swift-typebase-isequal.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/27796-swift-modulefile-maybereadforeignerrorconvention.swift b/validation-test/compiler_crashers_fixed/27796-swift-modulefile-maybereadforeignerrorconvention.swift similarity index 79% rename from validation-test/compiler_crashers/27796-swift-modulefile-maybereadforeignerrorconvention.swift rename to validation-test/compiler_crashers_fixed/27796-swift-modulefile-maybereadforeignerrorconvention.swift index 8762d6b1972d2..b86e93478f0db 100644 --- a/validation-test/compiler_crashers/27796-swift-modulefile-maybereadforeignerrorconvention.swift +++ b/validation-test/compiler_crashers_fixed/27796-swift-modulefile-maybereadforeignerrorconvention.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/27808-swift-constructordecl-constructordecl.swift b/validation-test/compiler_crashers_fixed/27808-swift-constructordecl-constructordecl.swift similarity index 82% rename from validation-test/compiler_crashers/27808-swift-constructordecl-constructordecl.swift rename to validation-test/compiler_crashers_fixed/27808-swift-constructordecl-constructordecl.swift index 886848169c9cd..b5072c600bafe 100644 --- a/validation-test/compiler_crashers/27808-swift-constructordecl-constructordecl.swift +++ b/validation-test/compiler_crashers_fixed/27808-swift-constructordecl-constructordecl.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/27810-swift-sourcefile-getcache.swift b/validation-test/compiler_crashers_fixed/27810-swift-sourcefile-getcache.swift similarity index 79% rename from validation-test/compiler_crashers/27810-swift-sourcefile-getcache.swift rename to validation-test/compiler_crashers_fixed/27810-swift-sourcefile-getcache.swift index 2aecd2960c4e4..768a7ca898009 100644 --- a/validation-test/compiler_crashers/27810-swift-sourcefile-getcache.swift +++ b/validation-test/compiler_crashers_fixed/27810-swift-sourcefile-getcache.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/27814-swift-parser-parseexprclosure.swift b/validation-test/compiler_crashers_fixed/27814-swift-parser-parseexprclosure.swift similarity index 79% rename from validation-test/compiler_crashers/27814-swift-parser-parseexprclosure.swift rename to validation-test/compiler_crashers_fixed/27814-swift-parser-parseexprclosure.swift index ccf89a9755e0f..bbf2fb5dbd066 100644 --- a/validation-test/compiler_crashers/27814-swift-parser-parseexprclosure.swift +++ b/validation-test/compiler_crashers_fixed/27814-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) diff --git a/validation-test/compiler_crashers/27821-swift-typechecker-definedefaultconstructor.swift b/validation-test/compiler_crashers_fixed/27821-swift-typechecker-definedefaultconstructor.swift similarity index 84% rename from validation-test/compiler_crashers/27821-swift-typechecker-definedefaultconstructor.swift rename to validation-test/compiler_crashers_fixed/27821-swift-typechecker-definedefaultconstructor.swift index e214964969f30..1a51d1c87ee56 100644 --- a/validation-test/compiler_crashers/27821-swift-typechecker-definedefaultconstructor.swift +++ b/validation-test/compiler_crashers_fixed/27821-swift-typechecker-definedefaultconstructor.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/27822-swift-modulefile-loadextensions.swift b/validation-test/compiler_crashers_fixed/27822-swift-modulefile-loadextensions.swift similarity index 81% rename from validation-test/compiler_crashers/27822-swift-modulefile-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27822-swift-modulefile-loadextensions.swift index 888d7cde27d6b..164055baf5876 100644 --- a/validation-test/compiler_crashers/27822-swift-modulefile-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27822-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/27823-swift-parser-parsetoken.swift b/validation-test/compiler_crashers_fixed/27823-swift-parser-parsetoken.swift similarity index 80% rename from validation-test/compiler_crashers/27823-swift-parser-parsetoken.swift rename to validation-test/compiler_crashers_fixed/27823-swift-parser-parsetoken.swift index 4933024fc323b..a558dfa74d366 100644 --- a/validation-test/compiler_crashers/27823-swift-parser-parsetoken.swift +++ b/validation-test/compiler_crashers_fixed/27823-swift-parser-parsetoken.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/27824-swift-modulefile-maybereadgenericparams.swift b/validation-test/compiler_crashers_fixed/27824-swift-modulefile-maybereadgenericparams.swift similarity index 81% rename from validation-test/compiler_crashers/27824-swift-modulefile-maybereadgenericparams.swift rename to validation-test/compiler_crashers_fixed/27824-swift-modulefile-maybereadgenericparams.swift index 6be5dca07cc0f..10fb4993c5b89 100644 --- a/validation-test/compiler_crashers/27824-swift-modulefile-maybereadgenericparams.swift +++ b/validation-test/compiler_crashers_fixed/27824-swift-modulefile-maybereadgenericparams.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/27826-swift-lexer-lexstringliteral.swift b/validation-test/compiler_crashers_fixed/27826-swift-lexer-lexstringliteral.swift similarity index 81% rename from validation-test/compiler_crashers/27826-swift-lexer-lexstringliteral.swift rename to validation-test/compiler_crashers_fixed/27826-swift-lexer-lexstringliteral.swift index 8d01112cac2d3..753454774c081 100644 --- a/validation-test/compiler_crashers/27826-swift-lexer-lexstringliteral.swift +++ b/validation-test/compiler_crashers_fixed/27826-swift-lexer-lexstringliteral.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/27827-swift-constraints-simplifylocator.swift b/validation-test/compiler_crashers_fixed/27827-swift-constraints-simplifylocator.swift similarity index 80% rename from validation-test/compiler_crashers/27827-swift-constraints-simplifylocator.swift rename to validation-test/compiler_crashers_fixed/27827-swift-constraints-simplifylocator.swift index 72f654b74a4b5..2f8ea45d229c1 100644 --- a/validation-test/compiler_crashers/27827-swift-constraints-simplifylocator.swift +++ b/validation-test/compiler_crashers_fixed/27827-swift-constraints-simplifylocator.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/27831-swift-bracestmt-create.swift b/validation-test/compiler_crashers_fixed/27831-swift-bracestmt-create.swift similarity index 80% rename from validation-test/compiler_crashers/27831-swift-bracestmt-create.swift rename to validation-test/compiler_crashers_fixed/27831-swift-bracestmt-create.swift index 89d4fb6467836..8fe616166fe64 100644 --- a/validation-test/compiler_crashers/27831-swift-bracestmt-create.swift +++ b/validation-test/compiler_crashers_fixed/27831-swift-bracestmt-create.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/27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift b/validation-test/compiler_crashers_fixed/27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift similarity index 79% rename from validation-test/compiler_crashers/27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift rename to validation-test/compiler_crashers_fixed/27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift index a66433f8e4e1d..2bc975a1a77b0 100644 --- a/validation-test/compiler_crashers/27835-llvm-tinyptrvector-swift-valuedecl-push-back.swift +++ b/validation-test/compiler_crashers_fixed/27835-llvm-tinyptrvector-swift-valuedecl-push-back.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/27838-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27838-swift-conformancelookuptable-updatelookuptable.swift similarity index 80% rename from validation-test/compiler_crashers/27838-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27838-swift-conformancelookuptable-updatelookuptable.swift index 669067d14ac2f..44e5d60bfd5a4 100644 --- a/validation-test/compiler_crashers/27838-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27838-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) diff --git a/validation-test/compiler_crashers/27839-swift-archetypebuilder-potentialarchetype-addconformance.swift b/validation-test/compiler_crashers_fixed/27839-swift-archetypebuilder-potentialarchetype-addconformance.swift similarity index 81% rename from validation-test/compiler_crashers/27839-swift-archetypebuilder-potentialarchetype-addconformance.swift rename to validation-test/compiler_crashers_fixed/27839-swift-archetypebuilder-potentialarchetype-addconformance.swift index 1d0ed48651f0a..84d0ae5cb6e71 100644 --- a/validation-test/compiler_crashers/27839-swift-archetypebuilder-potentialarchetype-addconformance.swift +++ b/validation-test/compiler_crashers_fixed/27839-swift-archetypebuilder-potentialarchetype-addconformance.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/27842-swift-conformancelookuptable-addprotocol.swift b/validation-test/compiler_crashers_fixed/27842-swift-conformancelookuptable-addprotocol.swift similarity index 81% rename from validation-test/compiler_crashers/27842-swift-conformancelookuptable-addprotocol.swift rename to validation-test/compiler_crashers_fixed/27842-swift-conformancelookuptable-addprotocol.swift index a1db70d58388a..32460260d2f28 100644 --- a/validation-test/compiler_crashers/27842-swift-conformancelookuptable-addprotocol.swift +++ b/validation-test/compiler_crashers_fixed/27842-swift-conformancelookuptable-addprotocol.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/27843-llvm-foldingset-swift-classtype-nodeequals.swift b/validation-test/compiler_crashers_fixed/27843-llvm-foldingset-swift-classtype-nodeequals.swift similarity index 80% rename from validation-test/compiler_crashers/27843-llvm-foldingset-swift-classtype-nodeequals.swift rename to validation-test/compiler_crashers_fixed/27843-llvm-foldingset-swift-classtype-nodeequals.swift index 73b9cf1f55925..2ff400d699b01 100644 --- a/validation-test/compiler_crashers/27843-llvm-foldingset-swift-classtype-nodeequals.swift +++ b/validation-test/compiler_crashers_fixed/27843-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) diff --git a/validation-test/compiler_crashers/27844-swift-typechecker-getinterfacetypefrominternaltype.swift b/validation-test/compiler_crashers_fixed/27844-swift-typechecker-getinterfacetypefrominternaltype.swift similarity index 80% rename from validation-test/compiler_crashers/27844-swift-typechecker-getinterfacetypefrominternaltype.swift rename to validation-test/compiler_crashers_fixed/27844-swift-typechecker-getinterfacetypefrominternaltype.swift index 1faffa3485a6d..b59284fd480c4 100644 --- a/validation-test/compiler_crashers/27844-swift-typechecker-getinterfacetypefrominternaltype.swift +++ b/validation-test/compiler_crashers_fixed/27844-swift-typechecker-getinterfacetypefrominternaltype.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/27845-swift-typebase-isequal.swift b/validation-test/compiler_crashers_fixed/27845-swift-typebase-isequal.swift similarity index 84% rename from validation-test/compiler_crashers/27845-swift-typebase-isequal.swift rename to validation-test/compiler_crashers_fixed/27845-swift-typebase-isequal.swift index f17633c131670..5dcab35111cbc 100644 --- a/validation-test/compiler_crashers/27845-swift-typebase-isequal.swift +++ b/validation-test/compiler_crashers_fixed/27845-swift-typebase-isequal.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/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift b/validation-test/compiler_crashers_fixed/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift similarity index 83% rename from validation-test/compiler_crashers/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift rename to validation-test/compiler_crashers_fixed/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift index 332921d556662..5d64f9330798e 100644 --- a/validation-test/compiler_crashers/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.swift +++ b/validation-test/compiler_crashers_fixed/27846-llvm-smallvectorimpl-swift-protocolconformance-operator.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/27848-swift-tupletype-get.swift b/validation-test/compiler_crashers_fixed/27848-swift-tupletype-get.swift similarity index 79% rename from validation-test/compiler_crashers/27848-swift-tupletype-get.swift rename to validation-test/compiler_crashers_fixed/27848-swift-tupletype-get.swift index 8aa767e4e2c2f..3f544c94c3027 100644 --- a/validation-test/compiler_crashers/27848-swift-tupletype-get.swift +++ b/validation-test/compiler_crashers_fixed/27848-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) diff --git a/validation-test/compiler_crashers/27851-swift-structtype-get.swift b/validation-test/compiler_crashers_fixed/27851-swift-structtype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27851-swift-structtype-get.swift rename to validation-test/compiler_crashers_fixed/27851-swift-structtype-get.swift index 36dbdc5c6aa6d..28a797e79f6e2 100644 --- a/validation-test/compiler_crashers/27851-swift-structtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27851-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/27854-swift-clangimporter-loadextensions.swift b/validation-test/compiler_crashers_fixed/27854-swift-clangimporter-loadextensions.swift similarity index 82% rename from validation-test/compiler_crashers/27854-swift-clangimporter-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27854-swift-clangimporter-loadextensions.swift index 1b907b2de56c1..c1bc5f72f26ed 100644 --- a/validation-test/compiler_crashers/27854-swift-clangimporter-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27854-swift-clangimporter-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/27855-swift-nominaltype-get.swift b/validation-test/compiler_crashers_fixed/27855-swift-nominaltype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27855-swift-nominaltype-get.swift rename to validation-test/compiler_crashers_fixed/27855-swift-nominaltype-get.swift index 7173135ca87ac..197ac74d35ccd 100644 --- a/validation-test/compiler_crashers/27855-swift-nominaltype-get.swift +++ b/validation-test/compiler_crashers_fixed/27855-swift-nominaltype-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/27856-swift-constraints-constraintlocator-profile.swift b/validation-test/compiler_crashers_fixed/27856-swift-constraints-constraintlocator-profile.swift similarity index 80% rename from validation-test/compiler_crashers/27856-swift-constraints-constraintlocator-profile.swift rename to validation-test/compiler_crashers_fixed/27856-swift-constraints-constraintlocator-profile.swift index 217085f01026e..0016716e6315a 100644 --- a/validation-test/compiler_crashers/27856-swift-constraints-constraintlocator-profile.swift +++ b/validation-test/compiler_crashers_fixed/27856-swift-constraints-constraintlocator-profile.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/27857-vtable.swift b/validation-test/compiler_crashers_fixed/27857-vtable.swift similarity index 80% rename from validation-test/compiler_crashers/27857-vtable.swift rename to validation-test/compiler_crashers_fixed/27857-vtable.swift index 9e3ac80336047..29772b4fcf793 100644 --- a/validation-test/compiler_crashers/27857-vtable.swift +++ b/validation-test/compiler_crashers_fixed/27857-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/27858-swift-inouttype-get.swift b/validation-test/compiler_crashers_fixed/27858-swift-inouttype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27858-swift-inouttype-get.swift rename to validation-test/compiler_crashers_fixed/27858-swift-inouttype-get.swift index 28b1da6a16dae..6a0dd9e703b80 100644 --- a/validation-test/compiler_crashers/27858-swift-inouttype-get.swift +++ b/validation-test/compiler_crashers_fixed/27858-swift-inouttype-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/27863-swift-serializedmoduleloader-loadextensions.swift b/validation-test/compiler_crashers_fixed/27863-swift-serializedmoduleloader-loadextensions.swift similarity index 81% rename from validation-test/compiler_crashers/27863-swift-serializedmoduleloader-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27863-swift-serializedmoduleloader-loadextensions.swift index 2b376722fc4e3..17d45c1cfa7c1 100644 --- a/validation-test/compiler_crashers/27863-swift-serializedmoduleloader-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27863-swift-serializedmoduleloader-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/27865-swift-conformancelookuptable-getimplicitprotocols.swift b/validation-test/compiler_crashers_fixed/27865-swift-conformancelookuptable-getimplicitprotocols.swift similarity index 81% rename from validation-test/compiler_crashers/27865-swift-conformancelookuptable-getimplicitprotocols.swift rename to validation-test/compiler_crashers_fixed/27865-swift-conformancelookuptable-getimplicitprotocols.swift index ca895b551df0b..47cefff7ca789 100644 --- a/validation-test/compiler_crashers/27865-swift-conformancelookuptable-getimplicitprotocols.swift +++ b/validation-test/compiler_crashers_fixed/27865-swift-conformancelookuptable-getimplicitprotocols.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/27867-swift-typerepr-getsourcerange.swift b/validation-test/compiler_crashers_fixed/27867-swift-typerepr-getsourcerange.swift similarity index 82% rename from validation-test/compiler_crashers/27867-swift-typerepr-getsourcerange.swift rename to validation-test/compiler_crashers_fixed/27867-swift-typerepr-getsourcerange.swift index 06e7227289faf..da399b9379265 100644 --- a/validation-test/compiler_crashers/27867-swift-typerepr-getsourcerange.swift +++ b/validation-test/compiler_crashers_fixed/27867-swift-typerepr-getsourcerange.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/27869-swift-nominaltypedecl-computeinterfacetype.swift b/validation-test/compiler_crashers_fixed/27869-swift-nominaltypedecl-computeinterfacetype.swift similarity index 78% rename from validation-test/compiler_crashers/27869-swift-nominaltypedecl-computeinterfacetype.swift rename to validation-test/compiler_crashers_fixed/27869-swift-nominaltypedecl-computeinterfacetype.swift index 495ce178d8fb2..0a57f18f33bfd 100644 --- a/validation-test/compiler_crashers/27869-swift-nominaltypedecl-computeinterfacetype.swift +++ b/validation-test/compiler_crashers_fixed/27869-swift-nominaltypedecl-computeinterfacetype.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/27870-swift-constraints-constraintsystem-optimizeconstraints.swift b/validation-test/compiler_crashers_fixed/27870-swift-constraints-constraintsystem-optimizeconstraints.swift similarity index 80% rename from validation-test/compiler_crashers/27870-swift-constraints-constraintsystem-optimizeconstraints.swift rename to validation-test/compiler_crashers_fixed/27870-swift-constraints-constraintsystem-optimizeconstraints.swift index f9f9435c3c2d1..ff2a1ad48ce7a 100644 --- a/validation-test/compiler_crashers/27870-swift-constraints-constraintsystem-optimizeconstraints.swift +++ b/validation-test/compiler_crashers_fixed/27870-swift-constraints-constraintsystem-optimizeconstraints.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/27872-swift-metatypetype-get.swift b/validation-test/compiler_crashers_fixed/27872-swift-metatypetype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27872-swift-metatypetype-get.swift rename to validation-test/compiler_crashers_fixed/27872-swift-metatypetype-get.swift index 149ae06724caf..ee0c1c7be58d5 100644 --- a/validation-test/compiler_crashers/27872-swift-metatypetype-get.swift +++ b/validation-test/compiler_crashers_fixed/27872-swift-metatypetype-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/27873-void.swift b/validation-test/compiler_crashers_fixed/27873-void.swift similarity index 83% rename from validation-test/compiler_crashers/27873-void.swift rename to validation-test/compiler_crashers_fixed/27873-void.swift index 9547fb8c2e92e..7ce8e5d1ffb80 100644 --- a/validation-test/compiler_crashers/27873-void.swift +++ b/validation-test/compiler_crashers_fixed/27873-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) diff --git a/validation-test/compiler_crashers/27874-swift-enumtype-get.swift b/validation-test/compiler_crashers_fixed/27874-swift-enumtype-get.swift similarity index 79% rename from validation-test/compiler_crashers/27874-swift-enumtype-get.swift rename to validation-test/compiler_crashers_fixed/27874-swift-enumtype-get.swift index 8b600eb88c900..a3b34775ca0e9 100644 --- a/validation-test/compiler_crashers/27874-swift-enumtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27874-swift-enumtype-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/27876-filtervalues.swift b/validation-test/compiler_crashers_fixed/27876-filtervalues.swift similarity index 79% rename from validation-test/compiler_crashers/27876-filtervalues.swift rename to validation-test/compiler_crashers_fixed/27876-filtervalues.swift index 01f473b9c6f10..8043578fbe35f 100644 --- a/validation-test/compiler_crashers/27876-filtervalues.swift +++ b/validation-test/compiler_crashers_fixed/27876-filtervalues.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/27877-swift-constructordecl-setbodyparams.swift b/validation-test/compiler_crashers_fixed/27877-swift-constructordecl-setbodyparams.swift similarity index 82% rename from validation-test/compiler_crashers/27877-swift-constructordecl-setbodyparams.swift rename to validation-test/compiler_crashers_fixed/27877-swift-constructordecl-setbodyparams.swift index 6e99616c330bb..1217bc24f52af 100644 --- a/validation-test/compiler_crashers/27877-swift-constructordecl-setbodyparams.swift +++ b/validation-test/compiler_crashers_fixed/27877-swift-constructordecl-setbodyparams.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/27878-swift-expr-walk.swift b/validation-test/compiler_crashers_fixed/27878-swift-expr-walk.swift similarity index 79% rename from validation-test/compiler_crashers/27878-swift-expr-walk.swift rename to validation-test/compiler_crashers_fixed/27878-swift-expr-walk.swift index 506536f76b347..5849c923d1427 100644 --- a/validation-test/compiler_crashers/27878-swift-expr-walk.swift +++ b/validation-test/compiler_crashers_fixed/27878-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) diff --git a/validation-test/compiler_crashers/27879-swift-polymorphicfunctiontype-get.swift b/validation-test/compiler_crashers_fixed/27879-swift-polymorphicfunctiontype-get.swift similarity index 83% rename from validation-test/compiler_crashers/27879-swift-polymorphicfunctiontype-get.swift rename to validation-test/compiler_crashers_fixed/27879-swift-polymorphicfunctiontype-get.swift index f519547ea51ac..a6998875859be 100644 --- a/validation-test/compiler_crashers/27879-swift-polymorphicfunctiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27879-swift-polymorphicfunctiontype-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/27881-swift-declcontext-getlocalconformances.swift b/validation-test/compiler_crashers_fixed/27881-swift-declcontext-getlocalconformances.swift similarity index 85% rename from validation-test/compiler_crashers/27881-swift-declcontext-getlocalconformances.swift rename to validation-test/compiler_crashers_fixed/27881-swift-declcontext-getlocalconformances.swift index 645e669a0849d..a94007f0d4ec8 100644 --- a/validation-test/compiler_crashers/27881-swift-declcontext-getlocalconformances.swift +++ b/validation-test/compiler_crashers_fixed/27881-swift-declcontext-getlocalconformances.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/27883-swift-archetypebuilder-addconformancerequirement.swift b/validation-test/compiler_crashers_fixed/27883-swift-archetypebuilder-addconformancerequirement.swift similarity index 80% rename from validation-test/compiler_crashers/27883-swift-archetypebuilder-addconformancerequirement.swift rename to validation-test/compiler_crashers_fixed/27883-swift-archetypebuilder-addconformancerequirement.swift index a3395016eec0a..e4a3e881d4b1b 100644 --- a/validation-test/compiler_crashers/27883-swift-archetypebuilder-addconformancerequirement.swift +++ b/validation-test/compiler_crashers_fixed/27883-swift-archetypebuilder-addconformancerequirement.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/27885-bool.swift b/validation-test/compiler_crashers_fixed/27885-bool.swift similarity index 78% rename from validation-test/compiler_crashers/27885-bool.swift rename to validation-test/compiler_crashers_fixed/27885-bool.swift index 1fadbd0b79b25..0cb994c901292 100644 --- a/validation-test/compiler_crashers/27885-bool.swift +++ b/validation-test/compiler_crashers_fixed/27885-bool.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/27887-swift-protocolcompositiontyperepr-create.swift b/validation-test/compiler_crashers_fixed/27887-swift-protocolcompositiontyperepr-create.swift similarity index 82% rename from validation-test/compiler_crashers/27887-swift-protocolcompositiontyperepr-create.swift rename to validation-test/compiler_crashers_fixed/27887-swift-protocolcompositiontyperepr-create.swift index 2b530af5013c3..46a8289a69161 100644 --- a/validation-test/compiler_crashers/27887-swift-protocolcompositiontyperepr-create.swift +++ b/validation-test/compiler_crashers_fixed/27887-swift-protocolcompositiontyperepr-create.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/27888-swift-typechecker-resolveinheritanceclause.swift b/validation-test/compiler_crashers_fixed/27888-swift-typechecker-resolveinheritanceclause.swift similarity index 82% rename from validation-test/compiler_crashers/27888-swift-typechecker-resolveinheritanceclause.swift rename to validation-test/compiler_crashers_fixed/27888-swift-typechecker-resolveinheritanceclause.swift index c4565dad173ea..59dad1519ff20 100644 --- a/validation-test/compiler_crashers/27888-swift-typechecker-resolveinheritanceclause.swift +++ b/validation-test/compiler_crashers_fixed/27888-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/27891-swift-typechecker-resolvesuperclass.swift b/validation-test/compiler_crashers_fixed/27891-swift-typechecker-resolvesuperclass.swift similarity index 80% rename from validation-test/compiler_crashers/27891-swift-typechecker-resolvesuperclass.swift rename to validation-test/compiler_crashers_fixed/27891-swift-typechecker-resolvesuperclass.swift index bdac99659bf29..523da920e7c00 100644 --- a/validation-test/compiler_crashers/27891-swift-typechecker-resolvesuperclass.swift +++ b/validation-test/compiler_crashers_fixed/27891-swift-typechecker-resolvesuperclass.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/27892-swift-extensiondecl-getmembers.swift b/validation-test/compiler_crashers_fixed/27892-swift-extensiondecl-getmembers.swift similarity index 85% rename from validation-test/compiler_crashers/27892-swift-extensiondecl-getmembers.swift rename to validation-test/compiler_crashers_fixed/27892-swift-extensiondecl-getmembers.swift index 5e3eedab9513d..1ab758d3cc6fb 100644 --- a/validation-test/compiler_crashers/27892-swift-extensiondecl-getmembers.swift +++ b/validation-test/compiler_crashers_fixed/27892-swift-extensiondecl-getmembers.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/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift b/validation-test/compiler_crashers_fixed/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift similarity index 80% rename from validation-test/compiler_crashers/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift rename to validation-test/compiler_crashers_fixed/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift index e02350c402f23..fa5e106801ade 100644 --- a/validation-test/compiler_crashers/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.swift +++ b/validation-test/compiler_crashers_fixed/27893-swift-archetypebuilder-potentialarchetype-getarchetypeanchor.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/27894-swift-parser-parsedecl.swift b/validation-test/compiler_crashers_fixed/27894-swift-parser-parsedecl.swift similarity index 80% rename from validation-test/compiler_crashers/27894-swift-parser-parsedecl.swift rename to validation-test/compiler_crashers_fixed/27894-swift-parser-parsedecl.swift index 9db28d55cc412..cf55d39ae8e87 100644 --- a/validation-test/compiler_crashers/27894-swift-parser-parsedecl.swift +++ b/validation-test/compiler_crashers_fixed/27894-swift-parser-parsedecl.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/27895-swift-sourcefile-getcache.swift b/validation-test/compiler_crashers_fixed/27895-swift-sourcefile-getcache.swift similarity index 79% rename from validation-test/compiler_crashers/27895-swift-sourcefile-getcache.swift rename to validation-test/compiler_crashers_fixed/27895-swift-sourcefile-getcache.swift index 54b6649f79fca..3b3992327d74d 100644 --- a/validation-test/compiler_crashers/27895-swift-sourcefile-getcache.swift +++ b/validation-test/compiler_crashers_fixed/27895-swift-sourcefile-getcache.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/27897-swift-typeloc-iserror.swift b/validation-test/compiler_crashers_fixed/27897-swift-typeloc-iserror.swift similarity index 81% rename from validation-test/compiler_crashers/27897-swift-typeloc-iserror.swift rename to validation-test/compiler_crashers_fixed/27897-swift-typeloc-iserror.swift index 8f04ff8df083c..94d7b8daf0184 100644 --- a/validation-test/compiler_crashers/27897-swift-typeloc-iserror.swift +++ b/validation-test/compiler_crashers_fixed/27897-swift-typeloc-iserror.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/27898-void.swift b/validation-test/compiler_crashers_fixed/27898-void.swift similarity index 84% rename from validation-test/compiler_crashers/27898-void.swift rename to validation-test/compiler_crashers_fixed/27898-void.swift index 1d53407ce0618..4d140f668bbe5 100644 --- a/validation-test/compiler_crashers/27898-void.swift +++ b/validation-test/compiler_crashers_fixed/27898-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) diff --git a/validation-test/compiler_crashers/27899-swift-unboundgenerictype-get.swift b/validation-test/compiler_crashers_fixed/27899-swift-unboundgenerictype-get.swift similarity index 82% rename from validation-test/compiler_crashers/27899-swift-unboundgenerictype-get.swift rename to validation-test/compiler_crashers_fixed/27899-swift-unboundgenerictype-get.swift index b77ecc36553bf..8fb7316e6a124 100644 --- a/validation-test/compiler_crashers/27899-swift-unboundgenerictype-get.swift +++ b/validation-test/compiler_crashers_fixed/27899-swift-unboundgenerictype-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/27900-swift-constraints-constraintsystem-assignfixedtype.swift b/validation-test/compiler_crashers_fixed/27900-swift-constraints-constraintsystem-assignfixedtype.swift similarity index 81% rename from validation-test/compiler_crashers/27900-swift-constraints-constraintsystem-assignfixedtype.swift rename to validation-test/compiler_crashers_fixed/27900-swift-constraints-constraintsystem-assignfixedtype.swift index 741d60e47410c..b450788a90a00 100644 --- a/validation-test/compiler_crashers/27900-swift-constraints-constraintsystem-assignfixedtype.swift +++ b/validation-test/compiler_crashers_fixed/27900-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/27903-swift-genericfunctiontype-get.swift b/validation-test/compiler_crashers_fixed/27903-swift-genericfunctiontype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27903-swift-genericfunctiontype-get.swift rename to validation-test/compiler_crashers_fixed/27903-swift-genericfunctiontype-get.swift index f604a039c0925..8a60e6a19e5fc 100644 --- a/validation-test/compiler_crashers/27903-swift-genericfunctiontype-get.swift +++ b/validation-test/compiler_crashers_fixed/27903-swift-genericfunctiontype-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/27904-swift-funcdecl-isdeferbody.swift b/validation-test/compiler_crashers_fixed/27904-swift-funcdecl-isdeferbody.swift similarity index 82% rename from validation-test/compiler_crashers/27904-swift-funcdecl-isdeferbody.swift rename to validation-test/compiler_crashers_fixed/27904-swift-funcdecl-isdeferbody.swift index 84739430caee4..c7fc9fcadbfe4 100644 --- a/validation-test/compiler_crashers/27904-swift-funcdecl-isdeferbody.swift +++ b/validation-test/compiler_crashers_fixed/27904-swift-funcdecl-isdeferbody.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/27905-swift-constraints-constraintgraph-change-undo.swift b/validation-test/compiler_crashers_fixed/27905-swift-constraints-constraintgraph-change-undo.swift similarity index 79% rename from validation-test/compiler_crashers/27905-swift-constraints-constraintgraph-change-undo.swift rename to validation-test/compiler_crashers_fixed/27905-swift-constraints-constraintgraph-change-undo.swift index ad4725de29f14..974291dcbe7a6 100644 --- a/validation-test/compiler_crashers/27905-swift-constraints-constraintgraph-change-undo.swift +++ b/validation-test/compiler_crashers_fixed/27905-swift-constraints-constraintgraph-change-undo.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/27906-swift-valuedecl.swift b/validation-test/compiler_crashers_fixed/27906-swift-valuedecl.swift similarity index 80% rename from validation-test/compiler_crashers/27906-swift-valuedecl.swift rename to validation-test/compiler_crashers_fixed/27906-swift-valuedecl.swift index 503fb3b27108f..aa5e7b56570b9 100644 --- a/validation-test/compiler_crashers/27906-swift-valuedecl.swift +++ b/validation-test/compiler_crashers_fixed/27906-swift-valuedecl.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/27907-swift-constraints-constraintsystem-solvesimplified.swift b/validation-test/compiler_crashers_fixed/27907-swift-constraints-constraintsystem-solvesimplified.swift similarity index 80% rename from validation-test/compiler_crashers/27907-swift-constraints-constraintsystem-solvesimplified.swift rename to validation-test/compiler_crashers_fixed/27907-swift-constraints-constraintsystem-solvesimplified.swift index 1b7c20184da3c..53e9f18856b57 100644 --- a/validation-test/compiler_crashers/27907-swift-constraints-constraintsystem-solvesimplified.swift +++ b/validation-test/compiler_crashers_fixed/27907-swift-constraints-constraintsystem-solvesimplified.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/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift b/validation-test/compiler_crashers_fixed/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift similarity index 85% rename from validation-test/compiler_crashers/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift rename to validation-test/compiler_crashers_fixed/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift index a6cf7a99c926e..ddbcaa2b2d2a2 100644 --- a/validation-test/compiler_crashers/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.swift +++ b/validation-test/compiler_crashers_fixed/27908-llvm-smallvectorimpl-swift-diagnosticargument-operator.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/27910-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/27910-swift-conformancelookuptable-updatelookuptable.swift similarity index 80% rename from validation-test/compiler_crashers/27910-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/27910-swift-conformancelookuptable-updatelookuptable.swift index 5be69bc8ee564..034923318f58a 100644 --- a/validation-test/compiler_crashers/27910-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/27910-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) diff --git a/validation-test/compiler_crashers/27911-swift-declcontext-getdeclaredtypeincontext.swift b/validation-test/compiler_crashers_fixed/27911-swift-declcontext-getdeclaredtypeincontext.swift similarity index 82% rename from validation-test/compiler_crashers/27911-swift-declcontext-getdeclaredtypeincontext.swift rename to validation-test/compiler_crashers_fixed/27911-swift-declcontext-getdeclaredtypeincontext.swift index fdcbd2f046122..54103dfc4f983 100644 --- a/validation-test/compiler_crashers/27911-swift-declcontext-getdeclaredtypeincontext.swift +++ b/validation-test/compiler_crashers_fixed/27911-swift-declcontext-getdeclaredtypeincontext.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/27912-swift-classtype-get.swift b/validation-test/compiler_crashers_fixed/27912-swift-classtype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27912-swift-classtype-get.swift rename to validation-test/compiler_crashers_fixed/27912-swift-classtype-get.swift index a32f8ea5f8286..e74517c4a408b 100644 --- a/validation-test/compiler_crashers/27912-swift-classtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27912-swift-classtype-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/27915-swift-typechecker-checkomitneedlesswords.swift b/validation-test/compiler_crashers_fixed/27915-swift-typechecker-checkomitneedlesswords.swift similarity index 84% rename from validation-test/compiler_crashers/27915-swift-typechecker-checkomitneedlesswords.swift rename to validation-test/compiler_crashers_fixed/27915-swift-typechecker-checkomitneedlesswords.swift index c7e1f8e16bcd7..7e7d4be753f58 100644 --- a/validation-test/compiler_crashers/27915-swift-typechecker-checkomitneedlesswords.swift +++ b/validation-test/compiler_crashers_fixed/27915-swift-typechecker-checkomitneedlesswords.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/27916-swift-sourcemanager-getmessage.swift b/validation-test/compiler_crashers_fixed/27916-swift-sourcemanager-getmessage.swift similarity index 79% rename from validation-test/compiler_crashers/27916-swift-sourcemanager-getmessage.swift rename to validation-test/compiler_crashers_fixed/27916-swift-sourcemanager-getmessage.swift index 850ec81ea355e..d2902ac3c7ca0 100644 --- a/validation-test/compiler_crashers/27916-swift-sourcemanager-getmessage.swift +++ b/validation-test/compiler_crashers_fixed/27916-swift-sourcemanager-getmessage.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/27917-swift-printdecldescription.swift b/validation-test/compiler_crashers_fixed/27917-swift-printdecldescription.swift similarity index 84% rename from validation-test/compiler_crashers/27917-swift-printdecldescription.swift rename to validation-test/compiler_crashers_fixed/27917-swift-printdecldescription.swift index 9d2d9a06d85e1..e4a07626c456c 100644 --- a/validation-test/compiler_crashers/27917-swift-printdecldescription.swift +++ b/validation-test/compiler_crashers_fixed/27917-swift-printdecldescription.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/27918-swift-archetypebuilder-potentialarchetype-gettype.swift b/validation-test/compiler_crashers_fixed/27918-swift-archetypebuilder-potentialarchetype-gettype.swift similarity index 82% rename from validation-test/compiler_crashers/27918-swift-archetypebuilder-potentialarchetype-gettype.swift rename to validation-test/compiler_crashers_fixed/27918-swift-archetypebuilder-potentialarchetype-gettype.swift index 36a52dbbf077c..f2f8c085d6501 100644 --- a/validation-test/compiler_crashers/27918-swift-archetypebuilder-potentialarchetype-gettype.swift +++ b/validation-test/compiler_crashers_fixed/27918-swift-archetypebuilder-potentialarchetype-gettype.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/27919-swift-stmt-walk.swift b/validation-test/compiler_crashers_fixed/27919-swift-stmt-walk.swift similarity index 80% rename from validation-test/compiler_crashers/27919-swift-stmt-walk.swift rename to validation-test/compiler_crashers_fixed/27919-swift-stmt-walk.swift index f6d7776044793..8b66effefe501 100644 --- a/validation-test/compiler_crashers/27919-swift-stmt-walk.swift +++ b/validation-test/compiler_crashers_fixed/27919-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/27920-void.swift b/validation-test/compiler_crashers_fixed/27920-void.swift similarity index 82% rename from validation-test/compiler_crashers/27920-void.swift rename to validation-test/compiler_crashers_fixed/27920-void.swift index f3b2b7359ddce..a1ea664ed298b 100644 --- a/validation-test/compiler_crashers/27920-void.swift +++ b/validation-test/compiler_crashers_fixed/27920-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) diff --git a/validation-test/compiler_crashers/27921-swift-conformancelookuptable-expandimpliedconformances.swift b/validation-test/compiler_crashers_fixed/27921-swift-conformancelookuptable-expandimpliedconformances.swift similarity index 81% rename from validation-test/compiler_crashers/27921-swift-conformancelookuptable-expandimpliedconformances.swift rename to validation-test/compiler_crashers_fixed/27921-swift-conformancelookuptable-expandimpliedconformances.swift index e214105e4e7fd..749c5a783e2e6 100644 --- a/validation-test/compiler_crashers/27921-swift-conformancelookuptable-expandimpliedconformances.swift +++ b/validation-test/compiler_crashers_fixed/27921-swift-conformancelookuptable-expandimpliedconformances.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/27922-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/27922-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 81% rename from validation-test/compiler_crashers/27922-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/27922-swift-unqualifiedlookup-unqualifiedlookup.swift index 9ca1a7e06ddd3..453b2e4cf3493 100644 --- a/validation-test/compiler_crashers/27922-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/27922-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) diff --git a/validation-test/compiler_crashers/27923-swift-modulefile-gettype.swift b/validation-test/compiler_crashers_fixed/27923-swift-modulefile-gettype.swift similarity index 80% rename from validation-test/compiler_crashers/27923-swift-modulefile-gettype.swift rename to validation-test/compiler_crashers_fixed/27923-swift-modulefile-gettype.swift index cd47c20cdc4b3..b52c6161a5e30 100644 --- a/validation-test/compiler_crashers/27923-swift-modulefile-gettype.swift +++ b/validation-test/compiler_crashers_fixed/27923-swift-modulefile-gettype.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/27924-swift-typechecker-typecheckexpression.swift b/validation-test/compiler_crashers_fixed/27924-swift-typechecker-typecheckexpression.swift similarity index 80% rename from validation-test/compiler_crashers/27924-swift-typechecker-typecheckexpression.swift rename to validation-test/compiler_crashers_fixed/27924-swift-typechecker-typecheckexpression.swift index 7c2a423db730a..a75c5b1c881da 100644 --- a/validation-test/compiler_crashers/27924-swift-typechecker-typecheckexpression.swift +++ b/validation-test/compiler_crashers_fixed/27924-swift-typechecker-typecheckexpression.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/27925-swift-modulefile-loadextensions.swift b/validation-test/compiler_crashers_fixed/27925-swift-modulefile-loadextensions.swift similarity index 82% rename from validation-test/compiler_crashers/27925-swift-modulefile-loadextensions.swift rename to validation-test/compiler_crashers_fixed/27925-swift-modulefile-loadextensions.swift index 1b168b03b9c07..48c9c92f1830e 100644 --- a/validation-test/compiler_crashers/27925-swift-modulefile-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/27925-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/27926-swift-clangmoduleunit-lookupvalue.swift b/validation-test/compiler_crashers_fixed/27926-swift-clangmoduleunit-lookupvalue.swift similarity index 82% rename from validation-test/compiler_crashers/27926-swift-clangmoduleunit-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/27926-swift-clangmoduleunit-lookupvalue.swift index abcf14afd4fd4..eb1f659b0528f 100644 --- a/validation-test/compiler_crashers/27926-swift-clangmoduleunit-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/27926-swift-clangmoduleunit-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/27928-swift-typechecker-validatedecl.swift b/validation-test/compiler_crashers_fixed/27928-swift-typechecker-validatedecl.swift similarity index 82% rename from validation-test/compiler_crashers/27928-swift-typechecker-validatedecl.swift rename to validation-test/compiler_crashers_fixed/27928-swift-typechecker-validatedecl.swift index 2676bec4bbe1e..15e4579884d80 100644 --- a/validation-test/compiler_crashers/27928-swift-typechecker-validatedecl.swift +++ b/validation-test/compiler_crashers_fixed/27928-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/27929-swift-clangimporter-lookupvalue.swift b/validation-test/compiler_crashers_fixed/27929-swift-clangimporter-lookupvalue.swift similarity index 81% rename from validation-test/compiler_crashers/27929-swift-clangimporter-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/27929-swift-clangimporter-lookupvalue.swift index da08b57fcd891..142f0a25c01d8 100644 --- a/validation-test/compiler_crashers/27929-swift-clangimporter-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/27929-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/27930-swift-clangimporter-implementation-importattributes.swift b/validation-test/compiler_crashers_fixed/27930-swift-clangimporter-implementation-importattributes.swift similarity index 79% rename from validation-test/compiler_crashers/27930-swift-clangimporter-implementation-importattributes.swift rename to validation-test/compiler_crashers_fixed/27930-swift-clangimporter-implementation-importattributes.swift index bb022f71c0dd8..ee228502e505b 100644 --- a/validation-test/compiler_crashers/27930-swift-clangimporter-implementation-importattributes.swift +++ b/validation-test/compiler_crashers_fixed/27930-swift-clangimporter-implementation-importattributes.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/27931-swift-constraints-constraintsystem-salvage.swift b/validation-test/compiler_crashers_fixed/27931-swift-constraints-constraintsystem-salvage.swift similarity index 79% rename from validation-test/compiler_crashers/27931-swift-constraints-constraintsystem-salvage.swift rename to validation-test/compiler_crashers_fixed/27931-swift-constraints-constraintsystem-salvage.swift index 566d17d1dd705..d26fcff0f08aa 100644 --- a/validation-test/compiler_crashers/27931-swift-constraints-constraintsystem-salvage.swift +++ b/validation-test/compiler_crashers_fixed/27931-swift-constraints-constraintsystem-salvage.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/27932-swift-constraints-constraintsystem-generateconstraints.swift b/validation-test/compiler_crashers_fixed/27932-swift-constraints-constraintsystem-generateconstraints.swift similarity index 81% rename from validation-test/compiler_crashers/27932-swift-constraints-constraintsystem-generateconstraints.swift rename to validation-test/compiler_crashers_fixed/27932-swift-constraints-constraintsystem-generateconstraints.swift index 06a3911630ef0..b52fe9f4736a5 100644 --- a/validation-test/compiler_crashers/27932-swift-constraints-constraintsystem-generateconstraints.swift +++ b/validation-test/compiler_crashers_fixed/27932-swift-constraints-constraintsystem-generateconstraints.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/27934-swift-genericsignature-getcanonical.swift b/validation-test/compiler_crashers_fixed/27934-swift-genericsignature-getcanonical.swift similarity index 81% rename from validation-test/compiler_crashers/27934-swift-genericsignature-getcanonical.swift rename to validation-test/compiler_crashers_fixed/27934-swift-genericsignature-getcanonical.swift index 5f27922447ed5..b5eaf8fd24dd4 100644 --- a/validation-test/compiler_crashers/27934-swift-genericsignature-getcanonical.swift +++ b/validation-test/compiler_crashers_fixed/27934-swift-genericsignature-getcanonical.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/27935-swift-moduledecl-lookupconformance.swift b/validation-test/compiler_crashers_fixed/27935-swift-moduledecl-lookupconformance.swift similarity index 81% rename from validation-test/compiler_crashers/27935-swift-moduledecl-lookupconformance.swift rename to validation-test/compiler_crashers_fixed/27935-swift-moduledecl-lookupconformance.swift index 031780f3b3b79..90e065529950b 100644 --- a/validation-test/compiler_crashers/27935-swift-moduledecl-lookupconformance.swift +++ b/validation-test/compiler_crashers_fixed/27935-swift-moduledecl-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/27937-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/27937-swift-substitutedtype-get.swift similarity index 81% rename from validation-test/compiler_crashers/27937-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/27937-swift-substitutedtype-get.swift index 6498bd2d7064a..d76faa8a6769f 100644 --- a/validation-test/compiler_crashers/27937-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27937-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) diff --git a/validation-test/compiler_crashers/27938-swift-arrayexpr-create.swift b/validation-test/compiler_crashers_fixed/27938-swift-arrayexpr-create.swift similarity index 79% rename from validation-test/compiler_crashers/27938-swift-arrayexpr-create.swift rename to validation-test/compiler_crashers_fixed/27938-swift-arrayexpr-create.swift index 0281c5f3cae18..158f1b2009064 100644 --- a/validation-test/compiler_crashers/27938-swift-arrayexpr-create.swift +++ b/validation-test/compiler_crashers_fixed/27938-swift-arrayexpr-create.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/27942-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/27942-resolveidenttypecomponent.swift similarity index 79% rename from validation-test/compiler_crashers/27942-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/27942-resolveidenttypecomponent.swift index ef9810c5c6cc0..8f4eee2b19bfc 100644 --- a/validation-test/compiler_crashers/27942-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/27942-resolveidenttypecomponent.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/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift b/validation-test/compiler_crashers_fixed/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift similarity index 81% rename from validation-test/compiler_crashers/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift rename to validation-test/compiler_crashers_fixed/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift index 812477993b06d..ffd0d0b5feeaa 100644 --- a/validation-test/compiler_crashers/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.swift +++ b/validation-test/compiler_crashers_fixed/27946-swift-archetypebuilder-potentialarchetype-isbetterarchetypeanchor.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/27949-swift-genericparamlist-create.swift b/validation-test/compiler_crashers_fixed/27949-swift-genericparamlist-create.swift similarity index 81% rename from validation-test/compiler_crashers/27949-swift-genericparamlist-create.swift rename to validation-test/compiler_crashers_fixed/27949-swift-genericparamlist-create.swift index 78f83d34b0598..674c49f585d6f 100644 --- a/validation-test/compiler_crashers/27949-swift-genericparamlist-create.swift +++ b/validation-test/compiler_crashers_fixed/27949-swift-genericparamlist-create.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/27950-swift-unqualifiedlookup-unqualifiedlookup.swift b/validation-test/compiler_crashers_fixed/27950-swift-unqualifiedlookup-unqualifiedlookup.swift similarity index 81% rename from validation-test/compiler_crashers/27950-swift-unqualifiedlookup-unqualifiedlookup.swift rename to validation-test/compiler_crashers_fixed/27950-swift-unqualifiedlookup-unqualifiedlookup.swift index 2c23d4bb18e60..21b4a8535af0e 100644 --- a/validation-test/compiler_crashers/27950-swift-unqualifiedlookup-unqualifiedlookup.swift +++ b/validation-test/compiler_crashers_fixed/27950-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) diff --git a/validation-test/compiler_crashers/27951-swift-astcontext-getspecializedconformance.swift b/validation-test/compiler_crashers_fixed/27951-swift-astcontext-getspecializedconformance.swift similarity index 79% rename from validation-test/compiler_crashers/27951-swift-astcontext-getspecializedconformance.swift rename to validation-test/compiler_crashers_fixed/27951-swift-astcontext-getspecializedconformance.swift index 38042e5686c2d..aa796cbfac921 100644 --- a/validation-test/compiler_crashers/27951-swift-astcontext-getspecializedconformance.swift +++ b/validation-test/compiler_crashers_fixed/27951-swift-astcontext-getspecializedconformance.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/27953-swift-modulefile-getcommentfordecl.swift b/validation-test/compiler_crashers_fixed/27953-swift-modulefile-getcommentfordecl.swift similarity index 81% rename from validation-test/compiler_crashers/27953-swift-modulefile-getcommentfordecl.swift rename to validation-test/compiler_crashers_fixed/27953-swift-modulefile-getcommentfordecl.swift index f57937563954c..4f20c70d136f7 100644 --- a/validation-test/compiler_crashers/27953-swift-modulefile-getcommentfordecl.swift +++ b/validation-test/compiler_crashers_fixed/27953-swift-modulefile-getcommentfordecl.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/27955-swift-declattribute-print.swift b/validation-test/compiler_crashers_fixed/27955-swift-declattribute-print.swift similarity index 83% rename from validation-test/compiler_crashers/27955-swift-declattribute-print.swift rename to validation-test/compiler_crashers_fixed/27955-swift-declattribute-print.swift index e4ecc5a1bec92..cee8814535a1b 100644 --- a/validation-test/compiler_crashers/27955-swift-declattribute-print.swift +++ b/validation-test/compiler_crashers_fixed/27955-swift-declattribute-print.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/27956-swift-expr-walk.swift b/validation-test/compiler_crashers_fixed/27956-swift-expr-walk.swift similarity index 82% rename from validation-test/compiler_crashers/27956-swift-expr-walk.swift rename to validation-test/compiler_crashers_fixed/27956-swift-expr-walk.swift index 777a12e5ca66d..890684ebc8cab 100644 --- a/validation-test/compiler_crashers/27956-swift-expr-walk.swift +++ b/validation-test/compiler_crashers_fixed/27956-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) diff --git a/validation-test/compiler_crashers/27957-swift-inflightdiagnostic-fixitremove.swift b/validation-test/compiler_crashers_fixed/27957-swift-inflightdiagnostic-fixitremove.swift similarity index 83% rename from validation-test/compiler_crashers/27957-swift-inflightdiagnostic-fixitremove.swift rename to validation-test/compiler_crashers_fixed/27957-swift-inflightdiagnostic-fixitremove.swift index 861c4d8f34c81..ef5d0fbf8b5a6 100644 --- a/validation-test/compiler_crashers/27957-swift-inflightdiagnostic-fixitremove.swift +++ b/validation-test/compiler_crashers_fixed/27957-swift-inflightdiagnostic-fixitremove.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/27960-swift-constraints-constraintsystem-opentype.swift b/validation-test/compiler_crashers_fixed/27960-swift-constraints-constraintsystem-opentype.swift similarity index 81% rename from validation-test/compiler_crashers/27960-swift-constraints-constraintsystem-opentype.swift rename to validation-test/compiler_crashers_fixed/27960-swift-constraints-constraintsystem-opentype.swift index f34ea4a9fd37b..12a557f0a9661 100644 --- a/validation-test/compiler_crashers/27960-swift-constraints-constraintsystem-opentype.swift +++ b/validation-test/compiler_crashers_fixed/27960-swift-constraints-constraintsystem-opentype.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/27963-swift-typechecker-checkunsupportedprotocoltype.swift b/validation-test/compiler_crashers_fixed/27963-swift-typechecker-checkunsupportedprotocoltype.swift similarity index 80% rename from validation-test/compiler_crashers/27963-swift-typechecker-checkunsupportedprotocoltype.swift rename to validation-test/compiler_crashers_fixed/27963-swift-typechecker-checkunsupportedprotocoltype.swift index 2bf7165239a99..6cf32e54f5ad2 100644 --- a/validation-test/compiler_crashers/27963-swift-typechecker-checkunsupportedprotocoltype.swift +++ b/validation-test/compiler_crashers_fixed/27963-swift-typechecker-checkunsupportedprotocoltype.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/27966-swift-dependentmembertype-get.swift b/validation-test/compiler_crashers_fixed/27966-swift-dependentmembertype-get.swift similarity index 80% rename from validation-test/compiler_crashers/27966-swift-dependentmembertype-get.swift rename to validation-test/compiler_crashers_fixed/27966-swift-dependentmembertype-get.swift index 96b28286925dd..1492e0415e05b 100644 --- a/validation-test/compiler_crashers/27966-swift-dependentmembertype-get.swift +++ b/validation-test/compiler_crashers_fixed/27966-swift-dependentmembertype-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/27969-void.swift b/validation-test/compiler_crashers_fixed/27969-void.swift similarity index 83% rename from validation-test/compiler_crashers/27969-void.swift rename to validation-test/compiler_crashers_fixed/27969-void.swift index a2ad7824c4916..72765ec588298 100644 --- a/validation-test/compiler_crashers/27969-void.swift +++ b/validation-test/compiler_crashers_fixed/27969-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) diff --git a/validation-test/compiler_crashers/27970-swift-typechecker-typecheckbinding.swift b/validation-test/compiler_crashers_fixed/27970-swift-typechecker-typecheckbinding.swift similarity index 82% rename from validation-test/compiler_crashers/27970-swift-typechecker-typecheckbinding.swift rename to validation-test/compiler_crashers_fixed/27970-swift-typechecker-typecheckbinding.swift index 25074eb8817c4..a0a0d0b6a7ccd 100644 --- a/validation-test/compiler_crashers/27970-swift-typechecker-typecheckbinding.swift +++ b/validation-test/compiler_crashers_fixed/27970-swift-typechecker-typecheckbinding.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/27971-swift-constraints-constraintsystem-applysolution.swift b/validation-test/compiler_crashers_fixed/27971-swift-constraints-constraintsystem-applysolution.swift similarity index 80% rename from validation-test/compiler_crashers/27971-swift-constraints-constraintsystem-applysolution.swift rename to validation-test/compiler_crashers_fixed/27971-swift-constraints-constraintsystem-applysolution.swift index 06645a8551ade..a1e80be9c8a26 100644 --- a/validation-test/compiler_crashers/27971-swift-constraints-constraintsystem-applysolution.swift +++ b/validation-test/compiler_crashers_fixed/27971-swift-constraints-constraintsystem-applysolution.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/27973-swift-typechecker-substituteinputsugartypeforresult.swift b/validation-test/compiler_crashers_fixed/27973-swift-typechecker-substituteinputsugartypeforresult.swift similarity index 81% rename from validation-test/compiler_crashers/27973-swift-typechecker-substituteinputsugartypeforresult.swift rename to validation-test/compiler_crashers_fixed/27973-swift-typechecker-substituteinputsugartypeforresult.swift index d811f626ab12c..d35965e6279ac 100644 --- a/validation-test/compiler_crashers/27973-swift-typechecker-substituteinputsugartypeforresult.swift +++ b/validation-test/compiler_crashers_fixed/27973-swift-typechecker-substituteinputsugartypeforresult.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/27974-swift-inflightdiagnostic-fixitreplacechars.swift b/validation-test/compiler_crashers_fixed/27974-swift-inflightdiagnostic-fixitreplacechars.swift similarity index 78% rename from validation-test/compiler_crashers/27974-swift-inflightdiagnostic-fixitreplacechars.swift rename to validation-test/compiler_crashers_fixed/27974-swift-inflightdiagnostic-fixitreplacechars.swift index c2249ade9e4a0..2e5d9b59ed800 100644 --- a/validation-test/compiler_crashers/27974-swift-inflightdiagnostic-fixitreplacechars.swift +++ b/validation-test/compiler_crashers_fixed/27974-swift-inflightdiagnostic-fixitreplacechars.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/27975-swift-genericsignature-get.swift b/validation-test/compiler_crashers_fixed/27975-swift-genericsignature-get.swift similarity index 79% rename from validation-test/compiler_crashers/27975-swift-genericsignature-get.swift rename to validation-test/compiler_crashers_fixed/27975-swift-genericsignature-get.swift index a0d29d4f7d194..260805e76a541 100644 --- a/validation-test/compiler_crashers/27975-swift-genericsignature-get.swift +++ b/validation-test/compiler_crashers_fixed/27975-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) diff --git a/validation-test/compiler_crashers/27976-swift-mangle-mangler-mangletype.swift b/validation-test/compiler_crashers_fixed/27976-swift-mangle-mangler-mangletype.swift similarity index 78% rename from validation-test/compiler_crashers/27976-swift-mangle-mangler-mangletype.swift rename to validation-test/compiler_crashers_fixed/27976-swift-mangle-mangler-mangletype.swift index 5c10f2015d55c..d407e8b24ca87 100644 --- a/validation-test/compiler_crashers/27976-swift-mangle-mangler-mangletype.swift +++ b/validation-test/compiler_crashers_fixed/27976-swift-mangle-mangler-mangletype.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/27977-swift-substitutedtype-get.swift b/validation-test/compiler_crashers_fixed/27977-swift-substitutedtype-get.swift similarity index 83% rename from validation-test/compiler_crashers/27977-swift-substitutedtype-get.swift rename to validation-test/compiler_crashers_fixed/27977-swift-substitutedtype-get.swift index 80268e78833d6..40ddeb9028d74 100644 --- a/validation-test/compiler_crashers/27977-swift-substitutedtype-get.swift +++ b/validation-test/compiler_crashers_fixed/27977-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) diff --git a/validation-test/compiler_crashers/27978-swift-typechecker-solveforexpression.swift b/validation-test/compiler_crashers_fixed/27978-swift-typechecker-solveforexpression.swift similarity index 80% rename from validation-test/compiler_crashers/27978-swift-typechecker-solveforexpression.swift rename to validation-test/compiler_crashers_fixed/27978-swift-typechecker-solveforexpression.swift index e85f254702313..6a993f5e56ff4 100644 --- a/validation-test/compiler_crashers/27978-swift-typechecker-solveforexpression.swift +++ b/validation-test/compiler_crashers_fixed/27978-swift-typechecker-solveforexpression.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/27980-matchcallarguments.swift b/validation-test/compiler_crashers_fixed/27980-matchcallarguments.swift similarity index 80% rename from validation-test/compiler_crashers/27980-matchcallarguments.swift rename to validation-test/compiler_crashers_fixed/27980-matchcallarguments.swift index df3837a5a278c..68d9eb325fb7f 100644 --- a/validation-test/compiler_crashers/27980-matchcallarguments.swift +++ b/validation-test/compiler_crashers_fixed/27980-matchcallarguments.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/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift b/validation-test/compiler_crashers_fixed/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift similarity index 80% rename from validation-test/compiler_crashers/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift rename to validation-test/compiler_crashers_fixed/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift index 25454ec4c93f0..b3367c7e184e5 100644 --- a/validation-test/compiler_crashers/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.swift +++ b/validation-test/compiler_crashers_fixed/27982-swift-constraints-constraintsystem-diagnosefailureforexpr.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/27986-swift-abstractfunctiondecl-setgenericparams.swift b/validation-test/compiler_crashers_fixed/27986-swift-abstractfunctiondecl-setgenericparams.swift similarity index 82% rename from validation-test/compiler_crashers/27986-swift-abstractfunctiondecl-setgenericparams.swift rename to validation-test/compiler_crashers_fixed/27986-swift-abstractfunctiondecl-setgenericparams.swift index 64b9544abb521..bdbdda76acd47 100644 --- a/validation-test/compiler_crashers/27986-swift-abstractfunctiondecl-setgenericparams.swift +++ b/validation-test/compiler_crashers_fixed/27986-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/27988-swift-inflightdiagnostic-fixitreplacechars.swift b/validation-test/compiler_crashers_fixed/27988-swift-inflightdiagnostic-fixitreplacechars.swift similarity index 97% rename from validation-test/compiler_crashers/27988-swift-inflightdiagnostic-fixitreplacechars.swift rename to validation-test/compiler_crashers_fixed/27988-swift-inflightdiagnostic-fixitreplacechars.swift index c30052c788dcb..eb65a1f37eb39 100644 --- a/validation-test/compiler_crashers/27988-swift-inflightdiagnostic-fixitreplacechars.swift +++ b/validation-test/compiler_crashers_fixed/27988-swift-inflightdiagnostic-fixitreplacechars.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/27989-swift-typechecker-lookupmember.swift b/validation-test/compiler_crashers_fixed/27989-swift-typechecker-lookupmember.swift similarity index 80% rename from validation-test/compiler_crashers/27989-swift-typechecker-lookupmember.swift rename to validation-test/compiler_crashers_fixed/27989-swift-typechecker-lookupmember.swift index dbdc96e7b74bf..b2e0d3b354ad2 100644 --- a/validation-test/compiler_crashers/27989-swift-typechecker-lookupmember.swift +++ b/validation-test/compiler_crashers_fixed/27989-swift-typechecker-lookupmember.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/27990-swift-constraints-constraintsystem-computeassigndesttype.swift b/validation-test/compiler_crashers_fixed/27990-swift-constraints-constraintsystem-computeassigndesttype.swift similarity index 81% rename from validation-test/compiler_crashers/27990-swift-constraints-constraintsystem-computeassigndesttype.swift rename to validation-test/compiler_crashers_fixed/27990-swift-constraints-constraintsystem-computeassigndesttype.swift index 750e24bc2a41d..3441cc2cf332d 100644 --- a/validation-test/compiler_crashers/27990-swift-constraints-constraintsystem-computeassigndesttype.swift +++ b/validation-test/compiler_crashers_fixed/27990-swift-constraints-constraintsystem-computeassigndesttype.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/27991-void.swift b/validation-test/compiler_crashers_fixed/27991-void.swift similarity index 81% rename from validation-test/compiler_crashers/27991-void.swift rename to validation-test/compiler_crashers_fixed/27991-void.swift index 0d69107221e2e..d6e92d0ca25e2 100644 --- a/validation-test/compiler_crashers/27991-void.swift +++ b/validation-test/compiler_crashers_fixed/27991-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) diff --git a/validation-test/compiler_crashers/27992-swift-createimplicitconstructor.swift b/validation-test/compiler_crashers_fixed/27992-swift-createimplicitconstructor.swift similarity index 84% rename from validation-test/compiler_crashers/27992-swift-createimplicitconstructor.swift rename to validation-test/compiler_crashers_fixed/27992-swift-createimplicitconstructor.swift index e776f48130823..575eae87d86ee 100644 --- a/validation-test/compiler_crashers/27992-swift-createimplicitconstructor.swift +++ b/validation-test/compiler_crashers_fixed/27992-swift-createimplicitconstructor.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/27993-swift-parser-parsedeclfunc.swift b/validation-test/compiler_crashers_fixed/27993-swift-parser-parsedeclfunc.swift similarity index 79% rename from validation-test/compiler_crashers/27993-swift-parser-parsedeclfunc.swift rename to validation-test/compiler_crashers_fixed/27993-swift-parser-parsedeclfunc.swift index cbbc602f597ca..95e1a2ff70dd4 100644 --- a/validation-test/compiler_crashers/27993-swift-parser-parsedeclfunc.swift +++ b/validation-test/compiler_crashers_fixed/27993-swift-parser-parsedeclfunc.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/27997-swift-typechecker-computeaccessibility.swift b/validation-test/compiler_crashers_fixed/27997-swift-typechecker-computeaccessibility.swift similarity index 82% rename from validation-test/compiler_crashers/27997-swift-typechecker-computeaccessibility.swift rename to validation-test/compiler_crashers_fixed/27997-swift-typechecker-computeaccessibility.swift index 156b35b644d0d..6816a1c89e3fd 100644 --- a/validation-test/compiler_crashers/27997-swift-typechecker-computeaccessibility.swift +++ b/validation-test/compiler_crashers_fixed/27997-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) diff --git a/validation-test/compiler_crashers/27998-swift-parser-consumetoken.swift b/validation-test/compiler_crashers_fixed/27998-swift-parser-consumetoken.swift similarity index 80% rename from validation-test/compiler_crashers/27998-swift-parser-consumetoken.swift rename to validation-test/compiler_crashers_fixed/27998-swift-parser-consumetoken.swift index d6a5160d9ff02..58aed38f0272c 100644 --- a/validation-test/compiler_crashers/27998-swift-parser-consumetoken.swift +++ b/validation-test/compiler_crashers_fixed/27998-swift-parser-consumetoken.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/27999-swift-constraints-solution-solution.swift b/validation-test/compiler_crashers_fixed/27999-swift-constraints-solution-solution.swift similarity index 82% rename from validation-test/compiler_crashers/27999-swift-constraints-solution-solution.swift rename to validation-test/compiler_crashers_fixed/27999-swift-constraints-solution-solution.swift index b28ed2b71466a..8b0af221a49b7 100644 --- a/validation-test/compiler_crashers/27999-swift-constraints-solution-solution.swift +++ b/validation-test/compiler_crashers_fixed/27999-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/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift b/validation-test/compiler_crashers_fixed/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift similarity index 80% rename from validation-test/compiler_crashers/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift rename to validation-test/compiler_crashers_fixed/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift index d2a045e9cff8e..60178d1854b1b 100644 --- a/validation-test/compiler_crashers/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.swift +++ b/validation-test/compiler_crashers_fixed/28000-swift-astcontext-getimplicitlyunwrappedoptionaldecl.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/28001-swift-parser-parsetypesimple.swift b/validation-test/compiler_crashers_fixed/28001-swift-parser-parsetypesimple.swift similarity index 79% rename from validation-test/compiler_crashers/28001-swift-parser-parsetypesimple.swift rename to validation-test/compiler_crashers_fixed/28001-swift-parser-parsetypesimple.swift index a71c609794d47..88b99325ad150 100644 --- a/validation-test/compiler_crashers/28001-swift-parser-parsetypesimple.swift +++ b/validation-test/compiler_crashers_fixed/28001-swift-parser-parsetypesimple.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/28002-swift-parser-parsebraceitems.swift b/validation-test/compiler_crashers_fixed/28002-swift-parser-parsebraceitems.swift similarity index 79% rename from validation-test/compiler_crashers/28002-swift-parser-parsebraceitems.swift rename to validation-test/compiler_crashers_fixed/28002-swift-parser-parsebraceitems.swift index 35edbd86b0a7e..b8a40000ba75c 100644 --- a/validation-test/compiler_crashers/28002-swift-parser-parsebraceitems.swift +++ b/validation-test/compiler_crashers_fixed/28002-swift-parser-parsebraceitems.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/28003-swift-constraints-constraintsystem-recordfix.swift b/validation-test/compiler_crashers_fixed/28003-swift-constraints-constraintsystem-recordfix.swift similarity index 81% rename from validation-test/compiler_crashers/28003-swift-constraints-constraintsystem-recordfix.swift rename to validation-test/compiler_crashers_fixed/28003-swift-constraints-constraintsystem-recordfix.swift index ca1a68cb51f31..bd963f5ab0e2e 100644 --- a/validation-test/compiler_crashers/28003-swift-constraints-constraintsystem-recordfix.swift +++ b/validation-test/compiler_crashers_fixed/28003-swift-constraints-constraintsystem-recordfix.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/28004-swift-parser-parseexprsequence.swift b/validation-test/compiler_crashers_fixed/28004-swift-parser-parseexprsequence.swift similarity index 79% rename from validation-test/compiler_crashers/28004-swift-parser-parseexprsequence.swift rename to validation-test/compiler_crashers_fixed/28004-swift-parser-parseexprsequence.swift index ccc8be89c3495..e490faedfc19b 100644 --- a/validation-test/compiler_crashers/28004-swift-parser-parseexprsequence.swift +++ b/validation-test/compiler_crashers_fixed/28004-swift-parser-parseexprsequence.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/28005-swift-constraints-constraintgraphnode-getadjacency.swift b/validation-test/compiler_crashers_fixed/28005-swift-constraints-constraintgraphnode-getadjacency.swift similarity index 82% rename from validation-test/compiler_crashers/28005-swift-constraints-constraintgraphnode-getadjacency.swift rename to validation-test/compiler_crashers_fixed/28005-swift-constraints-constraintgraphnode-getadjacency.swift index a026a24cff1b6..a84bd0f0d7dfe 100644 --- a/validation-test/compiler_crashers/28005-swift-constraints-constraintgraphnode-getadjacency.swift +++ b/validation-test/compiler_crashers_fixed/28005-swift-constraints-constraintgraphnode-getadjacency.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/28007-swift-scopeinfo-addtoscope.swift b/validation-test/compiler_crashers_fixed/28007-swift-scopeinfo-addtoscope.swift similarity index 78% rename from validation-test/compiler_crashers/28007-swift-scopeinfo-addtoscope.swift rename to validation-test/compiler_crashers_fixed/28007-swift-scopeinfo-addtoscope.swift index d337614e3191d..49e2776325c54 100644 --- a/validation-test/compiler_crashers/28007-swift-scopeinfo-addtoscope.swift +++ b/validation-test/compiler_crashers_fixed/28007-swift-scopeinfo-addtoscope.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/28008-swift-builtinunit-lookupcache-lookupvalue.swift b/validation-test/compiler_crashers_fixed/28008-swift-builtinunit-lookupcache-lookupvalue.swift similarity index 80% rename from validation-test/compiler_crashers/28008-swift-builtinunit-lookupcache-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/28008-swift-builtinunit-lookupcache-lookupvalue.swift index 4f23b6292ffc8..6ee52aec77ef1 100644 --- a/validation-test/compiler_crashers/28008-swift-builtinunit-lookupcache-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/28008-swift-builtinunit-lookupcache-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/28009-swift-parser-parsedeclenum.swift b/validation-test/compiler_crashers_fixed/28009-swift-parser-parsedeclenum.swift similarity index 78% rename from validation-test/compiler_crashers/28009-swift-parser-parsedeclenum.swift rename to validation-test/compiler_crashers_fixed/28009-swift-parser-parsedeclenum.swift index 3459a305faf02..24c5422c47398 100644 --- a/validation-test/compiler_crashers/28009-swift-parser-parsedeclenum.swift +++ b/validation-test/compiler_crashers_fixed/28009-swift-parser-parsedeclenum.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/28012-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/28012-swift-inflightdiagnostic.swift similarity index 78% rename from validation-test/compiler_crashers/28012-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/28012-swift-inflightdiagnostic.swift index 6977db4e41a5a..ed5760afc6fd2 100644 --- a/validation-test/compiler_crashers/28012-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/28012-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/28013-std-function-func-swift-archetypebuilder-visitinherited.swift b/validation-test/compiler_crashers_fixed/28013-std-function-func-swift-archetypebuilder-visitinherited.swift similarity index 83% rename from validation-test/compiler_crashers/28013-std-function-func-swift-archetypebuilder-visitinherited.swift rename to validation-test/compiler_crashers_fixed/28013-std-function-func-swift-archetypebuilder-visitinherited.swift index 43599d7a4b209..fdcf88a9fc21c 100644 --- a/validation-test/compiler_crashers/28013-std-function-func-swift-archetypebuilder-visitinherited.swift +++ b/validation-test/compiler_crashers_fixed/28013-std-function-func-swift-archetypebuilder-visitinherited.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/28014-swift-decl-walk.swift b/validation-test/compiler_crashers_fixed/28014-swift-decl-walk.swift similarity index 83% rename from validation-test/compiler_crashers/28014-swift-decl-walk.swift rename to validation-test/compiler_crashers_fixed/28014-swift-decl-walk.swift index f4fe45e3ed00b..3042bccc1150b 100644 --- a/validation-test/compiler_crashers/28014-swift-decl-walk.swift +++ b/validation-test/compiler_crashers_fixed/28014-swift-decl-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/28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift b/validation-test/compiler_crashers_fixed/28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift similarity index 81% rename from validation-test/compiler_crashers/28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift rename to validation-test/compiler_crashers_fixed/28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift index bb286d798a81f..6367d8abaac5c 100644 --- a/validation-test/compiler_crashers/28015-swift-constraints-constraintgraph-computeconnectedcomponents.swift +++ b/validation-test/compiler_crashers_fixed/28015-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/28016-swift-typebase-getcanonicaltype.swift b/validation-test/compiler_crashers_fixed/28016-swift-typebase-getcanonicaltype.swift similarity index 80% rename from validation-test/compiler_crashers/28016-swift-typebase-getcanonicaltype.swift rename to validation-test/compiler_crashers_fixed/28016-swift-typebase-getcanonicaltype.swift index f36d5b41939ef..ab28eff34da3c 100644 --- a/validation-test/compiler_crashers/28016-swift-typebase-getcanonicaltype.swift +++ b/validation-test/compiler_crashers_fixed/28016-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/28018-swift-valuedecl-overwritetype.swift b/validation-test/compiler_crashers_fixed/28018-swift-valuedecl-overwritetype.swift similarity index 81% rename from validation-test/compiler_crashers/28018-swift-valuedecl-overwritetype.swift rename to validation-test/compiler_crashers_fixed/28018-swift-valuedecl-overwritetype.swift index f39c5bea78da6..985b3b895b925 100644 --- a/validation-test/compiler_crashers/28018-swift-valuedecl-overwritetype.swift +++ b/validation-test/compiler_crashers_fixed/28018-swift-valuedecl-overwritetype.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/28020-llvm-smallvectorimpl-swift-decl-insert.swift b/validation-test/compiler_crashers_fixed/28020-llvm-smallvectorimpl-swift-decl-insert.swift similarity index 82% rename from validation-test/compiler_crashers/28020-llvm-smallvectorimpl-swift-decl-insert.swift rename to validation-test/compiler_crashers_fixed/28020-llvm-smallvectorimpl-swift-decl-insert.swift index 7653b996ca0f9..6715fa9cafc16 100644 --- a/validation-test/compiler_crashers/28020-llvm-smallvectorimpl-swift-decl-insert.swift +++ b/validation-test/compiler_crashers_fixed/28020-llvm-smallvectorimpl-swift-decl-insert.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/28021-swift-decl-getrawcomment.swift b/validation-test/compiler_crashers_fixed/28021-swift-decl-getrawcomment.swift similarity index 82% rename from validation-test/compiler_crashers/28021-swift-decl-getrawcomment.swift rename to validation-test/compiler_crashers_fixed/28021-swift-decl-getrawcomment.swift index 26dd2ee7de393..e4c112b6f377f 100644 --- a/validation-test/compiler_crashers/28021-swift-decl-getrawcomment.swift +++ b/validation-test/compiler_crashers_fixed/28021-swift-decl-getrawcomment.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/28022-swift-typechecker-diagnoseexplicitunavailability.swift b/validation-test/compiler_crashers_fixed/28022-swift-typechecker-diagnoseexplicitunavailability.swift similarity index 82% rename from validation-test/compiler_crashers/28022-swift-typechecker-diagnoseexplicitunavailability.swift rename to validation-test/compiler_crashers_fixed/28022-swift-typechecker-diagnoseexplicitunavailability.swift index 318a90223ef35..b39bd9786351f 100644 --- a/validation-test/compiler_crashers/28022-swift-typechecker-diagnoseexplicitunavailability.swift +++ b/validation-test/compiler_crashers_fixed/28022-swift-typechecker-diagnoseexplicitunavailability.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/28023-swift-typechecker-diagnoseexplicitunavailability.swift b/validation-test/compiler_crashers_fixed/28023-swift-typechecker-diagnoseexplicitunavailability.swift similarity index 80% rename from validation-test/compiler_crashers/28023-swift-typechecker-diagnoseexplicitunavailability.swift rename to validation-test/compiler_crashers_fixed/28023-swift-typechecker-diagnoseexplicitunavailability.swift index 5688895a99837..8c74de6581d76 100644 --- a/validation-test/compiler_crashers/28023-swift-typechecker-diagnoseexplicitunavailability.swift +++ b/validation-test/compiler_crashers_fixed/28023-swift-typechecker-diagnoseexplicitunavailability.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/28026-swift-protocolcompositiontype-build.swift b/validation-test/compiler_crashers_fixed/28026-swift-protocolcompositiontype-build.swift similarity index 81% rename from validation-test/compiler_crashers/28026-swift-protocolcompositiontype-build.swift rename to validation-test/compiler_crashers_fixed/28026-swift-protocolcompositiontype-build.swift index 1d933131f2ad9..fd277b8731f70 100644 --- a/validation-test/compiler_crashers/28026-swift-protocolcompositiontype-build.swift +++ b/validation-test/compiler_crashers_fixed/28026-swift-protocolcompositiontype-build.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/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift b/validation-test/compiler_crashers_fixed/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift similarity index 81% rename from validation-test/compiler_crashers/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift rename to validation-test/compiler_crashers_fixed/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift index 4a8fa2c63988f..e32c288b881ee 100644 --- a/validation-test/compiler_crashers/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.swift +++ b/validation-test/compiler_crashers_fixed/28028-swift-astcontext-diagnoseunintendedobjcmethodoverrides.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/28032-swift-typechecker-computecaptures.swift b/validation-test/compiler_crashers_fixed/28032-swift-typechecker-computecaptures.swift similarity index 81% rename from validation-test/compiler_crashers/28032-swift-typechecker-computecaptures.swift rename to validation-test/compiler_crashers_fixed/28032-swift-typechecker-computecaptures.swift index 7f02d8132c151..68d860703193c 100644 --- a/validation-test/compiler_crashers/28032-swift-typechecker-computecaptures.swift +++ b/validation-test/compiler_crashers_fixed/28032-swift-typechecker-computecaptures.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/28033-swift-configureconstructortype.swift b/validation-test/compiler_crashers_fixed/28033-swift-configureconstructortype.swift similarity index 82% rename from validation-test/compiler_crashers/28033-swift-configureconstructortype.swift rename to validation-test/compiler_crashers_fixed/28033-swift-configureconstructortype.swift index 9c45a73f3eafa..3e22ef3175cad 100644 --- a/validation-test/compiler_crashers/28033-swift-configureconstructortype.swift +++ b/validation-test/compiler_crashers_fixed/28033-swift-configureconstructortype.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/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift b/validation-test/compiler_crashers_fixed/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift similarity index 80% rename from validation-test/compiler_crashers/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift rename to validation-test/compiler_crashers_fixed/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift index 30f96d3840515..ac843d0b3a575 100644 --- a/validation-test/compiler_crashers/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.swift +++ b/validation-test/compiler_crashers_fixed/28034-swift-constraints-constraintsystem-diagnosefailureforexpr.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/28035-swift-archetypebuilder-getallarchetypes.swift b/validation-test/compiler_crashers_fixed/28035-swift-archetypebuilder-getallarchetypes.swift similarity index 81% rename from validation-test/compiler_crashers/28035-swift-archetypebuilder-getallarchetypes.swift rename to validation-test/compiler_crashers_fixed/28035-swift-archetypebuilder-getallarchetypes.swift index 61d4d330f42c0..f36bd7dded212 100644 --- a/validation-test/compiler_crashers/28035-swift-archetypebuilder-getallarchetypes.swift +++ b/validation-test/compiler_crashers_fixed/28035-swift-archetypebuilder-getallarchetypes.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/28037-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/28037-swift-inflightdiagnostic.swift similarity index 82% rename from validation-test/compiler_crashers/28037-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/28037-swift-inflightdiagnostic.swift index 9af26715e9831..2d910ab7aa4b7 100644 --- a/validation-test/compiler_crashers/28037-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/28037-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/28038-swift-parser-parsetype.swift b/validation-test/compiler_crashers_fixed/28038-swift-parser-parsetype.swift similarity index 78% rename from validation-test/compiler_crashers/28038-swift-parser-parsetype.swift rename to validation-test/compiler_crashers_fixed/28038-swift-parser-parsetype.swift index 8537eca913e64..9bfd2be179469 100644 --- a/validation-test/compiler_crashers/28038-swift-parser-parsetype.swift +++ b/validation-test/compiler_crashers_fixed/28038-swift-parser-parsetype.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/28039-swift-constraints-solution-computesubstitutions.swift b/validation-test/compiler_crashers_fixed/28039-swift-constraints-solution-computesubstitutions.swift similarity index 82% rename from validation-test/compiler_crashers/28039-swift-constraints-solution-computesubstitutions.swift rename to validation-test/compiler_crashers_fixed/28039-swift-constraints-solution-computesubstitutions.swift index 23565eeb0db31..001cb2bfd0c33 100644 --- a/validation-test/compiler_crashers/28039-swift-constraints-solution-computesubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/28039-swift-constraints-solution-computesubstitutions.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/28042-void.swift b/validation-test/compiler_crashers_fixed/28042-void.swift similarity index 83% rename from validation-test/compiler_crashers/28042-void.swift rename to validation-test/compiler_crashers_fixed/28042-void.swift index dfb1ce5540017..c6be7c1ddf121 100644 --- a/validation-test/compiler_crashers/28042-void.swift +++ b/validation-test/compiler_crashers_fixed/28042-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) diff --git a/validation-test/compiler_crashers/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift b/validation-test/compiler_crashers_fixed/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift similarity index 82% rename from validation-test/compiler_crashers/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift rename to validation-test/compiler_crashers_fixed/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift index 1412155ebf456..e8842ac606046 100644 --- a/validation-test/compiler_crashers/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.swift +++ b/validation-test/compiler_crashers_fixed/28044-swift-completegenerictyperesolver-resolvegenerictypeparamtype.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/28048-swift-astcontext-getspecializedconformance.swift b/validation-test/compiler_crashers_fixed/28048-swift-astcontext-getspecializedconformance.swift similarity index 83% rename from validation-test/compiler_crashers/28048-swift-astcontext-getspecializedconformance.swift rename to validation-test/compiler_crashers_fixed/28048-swift-astcontext-getspecializedconformance.swift index cce73329007b4..66af80c2bac46 100644 --- a/validation-test/compiler_crashers/28048-swift-astcontext-getspecializedconformance.swift +++ b/validation-test/compiler_crashers_fixed/28048-swift-astcontext-getspecializedconformance.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/28051-swift-parser-parseexprimpl.swift b/validation-test/compiler_crashers_fixed/28051-swift-parser-parseexprimpl.swift similarity index 83% rename from validation-test/compiler_crashers/28051-swift-parser-parseexprimpl.swift rename to validation-test/compiler_crashers_fixed/28051-swift-parser-parseexprimpl.swift index ec4ab79b0a6f1..4510f4d5d520c 100644 --- a/validation-test/compiler_crashers/28051-swift-parser-parseexprimpl.swift +++ b/validation-test/compiler_crashers_fixed/28051-swift-parser-parseexprimpl.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/28052-swift-moduledecl-lookupvalue.swift b/validation-test/compiler_crashers_fixed/28052-swift-moduledecl-lookupvalue.swift similarity index 83% rename from validation-test/compiler_crashers/28052-swift-moduledecl-lookupvalue.swift rename to validation-test/compiler_crashers_fixed/28052-swift-moduledecl-lookupvalue.swift index b238dc39f17df..2c85a77bede20 100644 --- a/validation-test/compiler_crashers/28052-swift-moduledecl-lookupvalue.swift +++ b/validation-test/compiler_crashers_fixed/28052-swift-moduledecl-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/28053-swift-parser-parsedeclvar.swift b/validation-test/compiler_crashers_fixed/28053-swift-parser-parsedeclvar.swift similarity index 78% rename from validation-test/compiler_crashers/28053-swift-parser-parsedeclvar.swift rename to validation-test/compiler_crashers_fixed/28053-swift-parser-parsedeclvar.swift index 0c87c297f6883..87b60e3814d1f 100644 --- a/validation-test/compiler_crashers/28053-swift-parser-parsedeclvar.swift +++ b/validation-test/compiler_crashers_fixed/28053-swift-parser-parsedeclvar.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/28054-ldstninstinfo.swift b/validation-test/compiler_crashers_fixed/28054-ldstninstinfo.swift similarity index 88% rename from validation-test/compiler_crashers/28054-ldstninstinfo.swift rename to validation-test/compiler_crashers_fixed/28054-ldstninstinfo.swift index 70926e65ad008..58d9eb3bed373 100644 --- a/validation-test/compiler_crashers/28054-ldstninstinfo.swift +++ b/validation-test/compiler_crashers_fixed/28054-ldstninstinfo.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/28055-swift-parser-parsegetsetimpl.swift b/validation-test/compiler_crashers_fixed/28055-swift-parser-parsegetsetimpl.swift similarity index 80% rename from validation-test/compiler_crashers/28055-swift-parser-parsegetsetimpl.swift rename to validation-test/compiler_crashers_fixed/28055-swift-parser-parsegetsetimpl.swift index 538224c0d1f05..2d3892e15753a 100644 --- a/validation-test/compiler_crashers/28055-swift-parser-parsegetsetimpl.swift +++ b/validation-test/compiler_crashers_fixed/28055-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) diff --git a/validation-test/compiler_crashers/28057-swift-modulefile-declcommenttableinfo-readdata.swift b/validation-test/compiler_crashers_fixed/28057-swift-modulefile-declcommenttableinfo-readdata.swift similarity index 81% rename from validation-test/compiler_crashers/28057-swift-modulefile-declcommenttableinfo-readdata.swift rename to validation-test/compiler_crashers_fixed/28057-swift-modulefile-declcommenttableinfo-readdata.swift index 4236fc8895ca2..036b7e88b1d3c 100644 --- a/validation-test/compiler_crashers/28057-swift-modulefile-declcommenttableinfo-readdata.swift +++ b/validation-test/compiler_crashers_fixed/28057-swift-modulefile-declcommenttableinfo-readdata.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/28060-std-function-func.swift b/validation-test/compiler_crashers_fixed/28060-std-function-func.swift similarity index 82% rename from validation-test/compiler_crashers/28060-std-function-func.swift rename to validation-test/compiler_crashers_fixed/28060-std-function-func.swift index e24e14b5d11bc..82802ad6be3f1 100644 --- a/validation-test/compiler_crashers/28060-std-function-func.swift +++ b/validation-test/compiler_crashers_fixed/28060-std-function-func.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/28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift b/validation-test/compiler_crashers_fixed/28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift similarity index 84% rename from validation-test/compiler_crashers/28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift rename to validation-test/compiler_crashers_fixed/28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift index 26f4caa0da68f..7ab7a9c066002 100644 --- a/validation-test/compiler_crashers/28061-swift-nominaltypedecl-getdeclaredtypeincontext.swift +++ b/validation-test/compiler_crashers_fixed/28061-swift-nominaltypedecl-getdeclaredtypeincontext.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/28062-swift-classdecl-checkobjcancestry.swift b/validation-test/compiler_crashers_fixed/28062-swift-classdecl-checkobjcancestry.swift similarity index 81% rename from validation-test/compiler_crashers/28062-swift-classdecl-checkobjcancestry.swift rename to validation-test/compiler_crashers_fixed/28062-swift-classdecl-checkobjcancestry.swift index 8702e2a44d78c..647c1ccb1a2d0 100644 --- a/validation-test/compiler_crashers/28062-swift-classdecl-checkobjcancestry.swift +++ b/validation-test/compiler_crashers_fixed/28062-swift-classdecl-checkobjcancestry.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/28064-swift-stmtconditionelement-walk.swift b/validation-test/compiler_crashers_fixed/28064-swift-stmtconditionelement-walk.swift similarity index 87% rename from validation-test/compiler_crashers/28064-swift-stmtconditionelement-walk.swift rename to validation-test/compiler_crashers_fixed/28064-swift-stmtconditionelement-walk.swift index c2b269e942772..907407cda9f14 100644 --- a/validation-test/compiler_crashers/28064-swift-stmtconditionelement-walk.swift +++ b/validation-test/compiler_crashers_fixed/28064-swift-stmtconditionelement-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/28066-swift-parentype-get.swift b/validation-test/compiler_crashers_fixed/28066-swift-parentype-get.swift similarity index 81% rename from validation-test/compiler_crashers/28066-swift-parentype-get.swift rename to validation-test/compiler_crashers_fixed/28066-swift-parentype-get.swift index 01ebc23ddb9a6..2f84b98124288 100644 --- a/validation-test/compiler_crashers/28066-swift-parentype-get.swift +++ b/validation-test/compiler_crashers_fixed/28066-swift-parentype-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/28067-no-stacktrace.swift b/validation-test/compiler_crashers_fixed/28067-no-stacktrace.swift similarity index 82% rename from validation-test/compiler_crashers/28067-no-stacktrace.swift rename to validation-test/compiler_crashers_fixed/28067-no-stacktrace.swift index 8a05df288f46e..a0e53a01215d4 100644 --- a/validation-test/compiler_crashers/28067-no-stacktrace.swift +++ b/validation-test/compiler_crashers_fixed/28067-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/28068-swift-declcontext-getlocalconformances.swift b/validation-test/compiler_crashers_fixed/28068-swift-declcontext-getlocalconformances.swift similarity index 81% rename from validation-test/compiler_crashers/28068-swift-declcontext-getlocalconformances.swift rename to validation-test/compiler_crashers_fixed/28068-swift-declcontext-getlocalconformances.swift index 87a5ebf9d35be..19f492a7f2385 100644 --- a/validation-test/compiler_crashers/28068-swift-declcontext-getlocalconformances.swift +++ b/validation-test/compiler_crashers_fixed/28068-swift-declcontext-getlocalconformances.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/28069-swift-nominaltypedecl-classifyasoptionaltype.swift b/validation-test/compiler_crashers_fixed/28069-swift-nominaltypedecl-classifyasoptionaltype.swift similarity index 82% rename from validation-test/compiler_crashers/28069-swift-nominaltypedecl-classifyasoptionaltype.swift rename to validation-test/compiler_crashers_fixed/28069-swift-nominaltypedecl-classifyasoptionaltype.swift index b143e62dfedda..5cbfcb5d7d8a9 100644 --- a/validation-test/compiler_crashers/28069-swift-nominaltypedecl-classifyasoptionaltype.swift +++ b/validation-test/compiler_crashers_fixed/28069-swift-nominaltypedecl-classifyasoptionaltype.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/28070-swift-lexer-diagnose.swift b/validation-test/compiler_crashers_fixed/28070-swift-lexer-diagnose.swift similarity index 80% rename from validation-test/compiler_crashers/28070-swift-lexer-diagnose.swift rename to validation-test/compiler_crashers_fixed/28070-swift-lexer-diagnose.swift index 64b2606478941..71b550727e5ea 100644 --- a/validation-test/compiler_crashers/28070-swift-lexer-diagnose.swift +++ b/validation-test/compiler_crashers_fixed/28070-swift-lexer-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/28073-swift-parser-parsestmt.swift b/validation-test/compiler_crashers_fixed/28073-swift-parser-parsestmt.swift similarity index 80% rename from validation-test/compiler_crashers/28073-swift-parser-parsestmt.swift rename to validation-test/compiler_crashers_fixed/28073-swift-parser-parsestmt.swift index a6c9a6c76b334..87f71b5a6ae23 100644 --- a/validation-test/compiler_crashers/28073-swift-parser-parsestmt.swift +++ b/validation-test/compiler_crashers_fixed/28073-swift-parser-parsestmt.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/28075-swift-lexer-lexstringliteral.swift b/validation-test/compiler_crashers_fixed/28075-swift-lexer-lexstringliteral.swift similarity index 81% rename from validation-test/compiler_crashers/28075-swift-lexer-lexstringliteral.swift rename to validation-test/compiler_crashers_fixed/28075-swift-lexer-lexstringliteral.swift index f75e51738b9c7..0fe55871a94ff 100644 --- a/validation-test/compiler_crashers/28075-swift-lexer-lexstringliteral.swift +++ b/validation-test/compiler_crashers_fixed/28075-swift-lexer-lexstringliteral.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/28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift b/validation-test/compiler_crashers_fixed/28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift similarity index 81% rename from validation-test/compiler_crashers/28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift rename to validation-test/compiler_crashers_fixed/28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift index e9be0bcc969fc..bf0d9af720dcf 100644 --- a/validation-test/compiler_crashers/28076-llvm-foldingset-swift-tupletype-getnodeprofile.swift +++ b/validation-test/compiler_crashers_fixed/28076-llvm-foldingset-swift-tupletype-getnodeprofile.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/28077-swift-parser-parsedeclsubscript.swift b/validation-test/compiler_crashers_fixed/28077-swift-parser-parsedeclsubscript.swift similarity index 80% rename from validation-test/compiler_crashers/28077-swift-parser-parsedeclsubscript.swift rename to validation-test/compiler_crashers_fixed/28077-swift-parser-parsedeclsubscript.swift index e96a5c3aa7d86..c63257b98f38b 100644 --- a/validation-test/compiler_crashers/28077-swift-parser-parsedeclsubscript.swift +++ b/validation-test/compiler_crashers_fixed/28077-swift-parser-parsedeclsubscript.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/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift b/validation-test/compiler_crashers_fixed/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift similarity index 84% rename from validation-test/compiler_crashers/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift rename to validation-test/compiler_crashers_fixed/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift index 20723ead93c1b..355d04e4f8433 100644 --- a/validation-test/compiler_crashers/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.swift +++ b/validation-test/compiler_crashers_fixed/28078-swift-archetypebuilder-inferrequirementswalker-walktotypepost.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/28079-swift-lexer-leximpl.swift b/validation-test/compiler_crashers_fixed/28079-swift-lexer-leximpl.swift similarity index 80% rename from validation-test/compiler_crashers/28079-swift-lexer-leximpl.swift rename to validation-test/compiler_crashers_fixed/28079-swift-lexer-leximpl.swift index efc450141b4e8..ba67a5756a09f 100644 --- a/validation-test/compiler_crashers/28079-swift-lexer-leximpl.swift +++ b/validation-test/compiler_crashers_fixed/28079-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/28080-swift-parser-diagnose.swift b/validation-test/compiler_crashers_fixed/28080-swift-parser-diagnose.swift similarity index 79% rename from validation-test/compiler_crashers/28080-swift-parser-diagnose.swift rename to validation-test/compiler_crashers_fixed/28080-swift-parser-diagnose.swift index cbb1a446ce399..e517abee90eac 100644 --- a/validation-test/compiler_crashers/28080-swift-parser-diagnose.swift +++ b/validation-test/compiler_crashers_fixed/28080-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/28081-swift-inflightdiagnostic.swift b/validation-test/compiler_crashers_fixed/28081-swift-inflightdiagnostic.swift similarity index 81% rename from validation-test/compiler_crashers/28081-swift-inflightdiagnostic.swift rename to validation-test/compiler_crashers_fixed/28081-swift-inflightdiagnostic.swift index f7f76ba5cfecc..05997381b5623 100644 --- a/validation-test/compiler_crashers/28081-swift-inflightdiagnostic.swift +++ b/validation-test/compiler_crashers_fixed/28081-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/28084-swift-modulefile-loadallmembers.swift b/validation-test/compiler_crashers_fixed/28084-swift-modulefile-loadallmembers.swift similarity index 80% rename from validation-test/compiler_crashers/28084-swift-modulefile-loadallmembers.swift rename to validation-test/compiler_crashers_fixed/28084-swift-modulefile-loadallmembers.swift index 660e9820a4b16..93efaa2c31c15 100644 --- a/validation-test/compiler_crashers/28084-swift-modulefile-loadallmembers.swift +++ b/validation-test/compiler_crashers_fixed/28084-swift-modulefile-loadallmembers.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/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift b/validation-test/compiler_crashers_fixed/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift similarity index 81% rename from validation-test/compiler_crashers/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift rename to validation-test/compiler_crashers_fixed/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift index 20e5b7173437a..d834a035ccc5f 100644 --- a/validation-test/compiler_crashers/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.swift +++ b/validation-test/compiler_crashers_fixed/28085-swift-constraints-constraintsystem-simplifyrestrictedconstraint.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/28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift b/validation-test/compiler_crashers_fixed/28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift similarity index 82% rename from validation-test/compiler_crashers/28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift rename to validation-test/compiler_crashers_fixed/28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift index 74e2d54b31b76..e2a051964b61b 100644 --- a/validation-test/compiler_crashers/28086-swift-completegenerictyperesolver-resolvedependentmembertype.swift +++ b/validation-test/compiler_crashers_fixed/28086-swift-completegenerictyperesolver-resolvedependentmembertype.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/28087-swift-genericsignature-profile.swift b/validation-test/compiler_crashers_fixed/28087-swift-genericsignature-profile.swift similarity index 97% rename from validation-test/compiler_crashers/28087-swift-genericsignature-profile.swift rename to validation-test/compiler_crashers_fixed/28087-swift-genericsignature-profile.swift index da6776e8a2c36..f907cbd722ffd 100644 --- a/validation-test/compiler_crashers/28087-swift-genericsignature-profile.swift +++ b/validation-test/compiler_crashers_fixed/28087-swift-genericsignature-profile.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/28088-swift-nominaltypedecl-markinvalidgenericsignature.swift b/validation-test/compiler_crashers_fixed/28088-swift-nominaltypedecl-markinvalidgenericsignature.swift similarity index 88% rename from validation-test/compiler_crashers/28088-swift-nominaltypedecl-markinvalidgenericsignature.swift rename to validation-test/compiler_crashers_fixed/28088-swift-nominaltypedecl-markinvalidgenericsignature.swift index e26d28e190e92..b37ef7d422021 100644 --- a/validation-test/compiler_crashers/28088-swift-nominaltypedecl-markinvalidgenericsignature.swift +++ b/validation-test/compiler_crashers_fixed/28088-swift-nominaltypedecl-markinvalidgenericsignature.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/28089-extractsimplefield.swift b/validation-test/compiler_crashers_fixed/28089-extractsimplefield.swift similarity index 87% rename from validation-test/compiler_crashers/28089-extractsimplefield.swift rename to validation-test/compiler_crashers_fixed/28089-extractsimplefield.swift index ad9e3bd655b05..03affaa7e490f 100644 --- a/validation-test/compiler_crashers/28089-extractsimplefield.swift +++ b/validation-test/compiler_crashers_fixed/28089-extractsimplefield.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/28090-bool.swift b/validation-test/compiler_crashers_fixed/28090-bool.swift similarity index 97% rename from validation-test/compiler_crashers/28090-bool.swift rename to validation-test/compiler_crashers_fixed/28090-bool.swift index 279daac4a13a9..2cc119970b677 100644 --- a/validation-test/compiler_crashers/28090-bool.swift +++ b/validation-test/compiler_crashers_fixed/28090-bool.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/28092-swift-parser-parseexpridentifier.swift b/validation-test/compiler_crashers_fixed/28092-swift-parser-parseexpridentifier.swift similarity index 80% rename from validation-test/compiler_crashers/28092-swift-parser-parseexpridentifier.swift rename to validation-test/compiler_crashers_fixed/28092-swift-parser-parseexpridentifier.swift index ba8e804513576..bf951c840334b 100644 --- a/validation-test/compiler_crashers/28092-swift-parser-parseexpridentifier.swift +++ b/validation-test/compiler_crashers_fixed/28092-swift-parser-parseexpridentifier.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/28093-swift-archetypetype-getnew.swift b/validation-test/compiler_crashers_fixed/28093-swift-archetypetype-getnew.swift similarity index 82% rename from validation-test/compiler_crashers/28093-swift-archetypetype-getnew.swift rename to validation-test/compiler_crashers_fixed/28093-swift-archetypetype-getnew.swift index f98591e6cff0c..6d25de45bbd49 100644 --- a/validation-test/compiler_crashers/28093-swift-archetypetype-getnew.swift +++ b/validation-test/compiler_crashers_fixed/28093-swift-archetypetype-getnew.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/28094-swift-parser-parsetypedpattern.swift b/validation-test/compiler_crashers_fixed/28094-swift-parser-parsetypedpattern.swift similarity index 78% rename from validation-test/compiler_crashers/28094-swift-parser-parsetypedpattern.swift rename to validation-test/compiler_crashers_fixed/28094-swift-parser-parsetypedpattern.swift index bc6258a15639d..109f7c9374ace 100644 --- a/validation-test/compiler_crashers/28094-swift-parser-parsetypedpattern.swift +++ b/validation-test/compiler_crashers_fixed/28094-swift-parser-parsetypedpattern.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/28095-swift-parser-parsedeclstruct.swift b/validation-test/compiler_crashers_fixed/28095-swift-parser-parsedeclstruct.swift similarity index 78% rename from validation-test/compiler_crashers/28095-swift-parser-parsedeclstruct.swift rename to validation-test/compiler_crashers_fixed/28095-swift-parser-parsedeclstruct.swift index d9f348e253bd7..398388dddfc3d 100644 --- a/validation-test/compiler_crashers/28095-swift-parser-parsedeclstruct.swift +++ b/validation-test/compiler_crashers_fixed/28095-swift-parser-parsedeclstruct.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/28096-swift-parser-parsedecl.swift b/validation-test/compiler_crashers_fixed/28096-swift-parser-parsedecl.swift similarity index 79% rename from validation-test/compiler_crashers/28096-swift-parser-parsedecl.swift rename to validation-test/compiler_crashers_fixed/28096-swift-parser-parsedecl.swift index 238e89e7b4e80..26311315ef3a5 100644 --- a/validation-test/compiler_crashers/28096-swift-parser-parsedecl.swift +++ b/validation-test/compiler_crashers_fixed/28096-swift-parser-parsedecl.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/28097-swift-astprinter-printname.swift b/validation-test/compiler_crashers_fixed/28097-swift-astprinter-printname.swift similarity index 81% rename from validation-test/compiler_crashers/28097-swift-astprinter-printname.swift rename to validation-test/compiler_crashers_fixed/28097-swift-astprinter-printname.swift index 3ee2742d90287..6820448ff132f 100644 --- a/validation-test/compiler_crashers/28097-swift-astprinter-printname.swift +++ b/validation-test/compiler_crashers_fixed/28097-swift-astprinter-printname.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/28099-swift-conformancelookuptable-updatelookuptable.swift b/validation-test/compiler_crashers_fixed/28099-swift-conformancelookuptable-updatelookuptable.swift similarity index 82% rename from validation-test/compiler_crashers/28099-swift-conformancelookuptable-updatelookuptable.swift rename to validation-test/compiler_crashers_fixed/28099-swift-conformancelookuptable-updatelookuptable.swift index 5abe52f3c1d68..5473c2d7d45de 100644 --- a/validation-test/compiler_crashers/28099-swift-conformancelookuptable-updatelookuptable.swift +++ b/validation-test/compiler_crashers_fixed/28099-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) diff --git a/validation-test/compiler_crashers/28103-swift-parser-parsetoken.swift b/validation-test/compiler_crashers_fixed/28103-swift-parser-parsetoken.swift similarity index 80% rename from validation-test/compiler_crashers/28103-swift-parser-parsetoken.swift rename to validation-test/compiler_crashers_fixed/28103-swift-parser-parsetoken.swift index df51e4ffb9ac8..cf505bd043a5f 100644 --- a/validation-test/compiler_crashers/28103-swift-parser-parsetoken.swift +++ b/validation-test/compiler_crashers_fixed/28103-swift-parser-parsetoken.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/28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift b/validation-test/compiler_crashers_fixed/28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift similarity index 81% rename from validation-test/compiler_crashers/28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift rename to validation-test/compiler_crashers_fixed/28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift index 7583bf00ae99a..92f56a8e7e919 100644 --- a/validation-test/compiler_crashers/28105-swift-constraints-constraintsystem-simplifymemberconstraint.swift +++ b/validation-test/compiler_crashers_fixed/28105-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/28109-swift-constraints-constraintgraph-removeconstraint.swift b/validation-test/compiler_crashers_fixed/28109-swift-constraints-constraintgraph-removeconstraint.swift similarity index 82% rename from validation-test/compiler_crashers/28109-swift-constraints-constraintgraph-removeconstraint.swift rename to validation-test/compiler_crashers_fixed/28109-swift-constraints-constraintgraph-removeconstraint.swift index d370588321fba..1c7d07ae9e90f 100644 --- a/validation-test/compiler_crashers/28109-swift-constraints-constraintgraph-removeconstraint.swift +++ b/validation-test/compiler_crashers_fixed/28109-swift-constraints-constraintgraph-removeconstraint.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/28111-swift-modulefile-readnormalconformance.swift b/validation-test/compiler_crashers_fixed/28111-swift-modulefile-readnormalconformance.swift similarity index 81% rename from validation-test/compiler_crashers/28111-swift-modulefile-readnormalconformance.swift rename to validation-test/compiler_crashers_fixed/28111-swift-modulefile-readnormalconformance.swift index 18decf0f75a2c..dd5a4ebeea68b 100644 --- a/validation-test/compiler_crashers/28111-swift-modulefile-readnormalconformance.swift +++ b/validation-test/compiler_crashers_fixed/28111-swift-modulefile-readnormalconformance.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/28113-swift-constraints-constraintgraph-gatherconstraints.swift b/validation-test/compiler_crashers_fixed/28113-swift-constraints-constraintgraph-gatherconstraints.swift similarity index 81% rename from validation-test/compiler_crashers/28113-swift-constraints-constraintgraph-gatherconstraints.swift rename to validation-test/compiler_crashers_fixed/28113-swift-constraints-constraintgraph-gatherconstraints.swift index a7a1192ea08d9..324d53703f06f 100644 --- a/validation-test/compiler_crashers/28113-swift-constraints-constraintgraph-gatherconstraints.swift +++ b/validation-test/compiler_crashers_fixed/28113-swift-constraints-constraintgraph-gatherconstraints.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/28114-swift-tuplepattern-create.swift b/validation-test/compiler_crashers_fixed/28114-swift-tuplepattern-create.swift similarity index 80% rename from validation-test/compiler_crashers/28114-swift-tuplepattern-create.swift rename to validation-test/compiler_crashers_fixed/28114-swift-tuplepattern-create.swift index 985894bbf5df5..d9d6bcf2197d5 100644 --- a/validation-test/compiler_crashers/28114-swift-tuplepattern-create.swift +++ b/validation-test/compiler_crashers_fixed/28114-swift-tuplepattern-create.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/28115-swift-patternbindingdecl-create.swift b/validation-test/compiler_crashers_fixed/28115-swift-patternbindingdecl-create.swift similarity index 79% rename from validation-test/compiler_crashers/28115-swift-patternbindingdecl-create.swift rename to validation-test/compiler_crashers_fixed/28115-swift-patternbindingdecl-create.swift index 5e3cafe7d5873..2b64f9818f594 100644 --- a/validation-test/compiler_crashers/28115-swift-patternbindingdecl-create.swift +++ b/validation-test/compiler_crashers_fixed/28115-swift-patternbindingdecl-create.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/28116-swift-parser-skipsingle.swift b/validation-test/compiler_crashers_fixed/28116-swift-parser-skipsingle.swift similarity index 85% rename from validation-test/compiler_crashers/28116-swift-parser-skipsingle.swift rename to validation-test/compiler_crashers_fixed/28116-swift-parser-skipsingle.swift index 3e19fdeb96827..1585ed8476221 100644 --- a/validation-test/compiler_crashers/28116-swift-parser-skipsingle.swift +++ b/validation-test/compiler_crashers_fixed/28116-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) diff --git a/validation-test/compiler_crashers/28117-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/28117-resolveidenttypecomponent.swift similarity index 79% rename from validation-test/compiler_crashers/28117-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/28117-resolveidenttypecomponent.swift index 1c5a45c67e0f7..9e21427506386 100644 --- a/validation-test/compiler_crashers/28117-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/28117-resolveidenttypecomponent.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/28118-resolveidenttypecomponent.swift b/validation-test/compiler_crashers_fixed/28118-resolveidenttypecomponent.swift similarity index 86% rename from validation-test/compiler_crashers/28118-resolveidenttypecomponent.swift rename to validation-test/compiler_crashers_fixed/28118-resolveidenttypecomponent.swift index 283caa97e4597..d7c0cbcfe0709 100644 --- a/validation-test/compiler_crashers/28118-resolveidenttypecomponent.swift +++ b/validation-test/compiler_crashers_fixed/28118-resolveidenttypecomponent.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/28124-swift-typevisitor.swift b/validation-test/compiler_crashers_fixed/28124-swift-typevisitor.swift similarity index 82% rename from validation-test/compiler_crashers/28124-swift-typevisitor.swift rename to validation-test/compiler_crashers_fixed/28124-swift-typevisitor.swift index 3c965d530360b..bfaeaf4a7dc5d 100644 --- a/validation-test/compiler_crashers/28124-swift-typevisitor.swift +++ b/validation-test/compiler_crashers_fixed/28124-swift-typevisitor.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/28126-swift-getbuiltinvaluedecl.swift b/validation-test/compiler_crashers_fixed/28126-swift-getbuiltinvaluedecl.swift similarity index 82% rename from validation-test/compiler_crashers/28126-swift-getbuiltinvaluedecl.swift rename to validation-test/compiler_crashers_fixed/28126-swift-getbuiltinvaluedecl.swift index adcb97ae71ffc..a27f43bc0cf04 100644 --- a/validation-test/compiler_crashers/28126-swift-getbuiltinvaluedecl.swift +++ b/validation-test/compiler_crashers_fixed/28126-swift-getbuiltinvaluedecl.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/28127-swift-typebase-getmembersubstitutions.swift b/validation-test/compiler_crashers_fixed/28127-swift-typebase-getmembersubstitutions.swift similarity index 80% rename from validation-test/compiler_crashers/28127-swift-typebase-getmembersubstitutions.swift rename to validation-test/compiler_crashers_fixed/28127-swift-typebase-getmembersubstitutions.swift index b7e7f6e36f091..02b4af4426a20 100644 --- a/validation-test/compiler_crashers/28127-swift-typebase-getmembersubstitutions.swift +++ b/validation-test/compiler_crashers_fixed/28127-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/28129-no-stacktrace.swift b/validation-test/compiler_crashers_fixed/28129-no-stacktrace.swift similarity index 85% rename from validation-test/compiler_crashers/28129-no-stacktrace.swift rename to validation-test/compiler_crashers_fixed/28129-no-stacktrace.swift index a86ba7b796a79..c5743db9ddb50 100644 --- a/validation-test/compiler_crashers/28129-no-stacktrace.swift +++ b/validation-test/compiler_crashers_fixed/28129-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/28132-swift-namelookup-findlocalval-visitifstmt.swift b/validation-test/compiler_crashers_fixed/28132-swift-namelookup-findlocalval-visitifstmt.swift similarity index 80% rename from validation-test/compiler_crashers/28132-swift-namelookup-findlocalval-visitifstmt.swift rename to validation-test/compiler_crashers_fixed/28132-swift-namelookup-findlocalval-visitifstmt.swift index b6a3c9209743b..23ffca6e85b42 100644 --- a/validation-test/compiler_crashers/28132-swift-namelookup-findlocalval-visitifstmt.swift +++ b/validation-test/compiler_crashers_fixed/28132-swift-namelookup-findlocalval-visitifstmt.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/28133-swift-parser-parsedeclenum.swift b/validation-test/compiler_crashers_fixed/28133-swift-parser-parsedeclenum.swift similarity index 80% rename from validation-test/compiler_crashers/28133-swift-parser-parsedeclenum.swift rename to validation-test/compiler_crashers_fixed/28133-swift-parser-parsedeclenum.swift index 06efc0b09fa45..b702358b065f9 100644 --- a/validation-test/compiler_crashers/28133-swift-parser-parsedeclenum.swift +++ b/validation-test/compiler_crashers_fixed/28133-swift-parser-parsedeclenum.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/28135-swift-parser-parseexprlist.swift b/validation-test/compiler_crashers_fixed/28135-swift-parser-parseexprlist.swift similarity index 79% rename from validation-test/compiler_crashers/28135-swift-parser-parseexprlist.swift rename to validation-test/compiler_crashers_fixed/28135-swift-parser-parseexprlist.swift index d3080ac41f979..e5cfadb6ea4c3 100644 --- a/validation-test/compiler_crashers/28135-swift-parser-parseexprlist.swift +++ b/validation-test/compiler_crashers_fixed/28135-swift-parser-parseexprlist.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/28137-swift-identtyperepr-create.swift b/validation-test/compiler_crashers_fixed/28137-swift-identtyperepr-create.swift similarity index 79% rename from validation-test/compiler_crashers/28137-swift-identtyperepr-create.swift rename to validation-test/compiler_crashers_fixed/28137-swift-identtyperepr-create.swift index b430aa5e9384f..5990aa6089fe6 100644 --- a/validation-test/compiler_crashers/28137-swift-identtyperepr-create.swift +++ b/validation-test/compiler_crashers_fixed/28137-swift-identtyperepr-create.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/28138-swift-constraints-constraintsystem-addoverloadset.swift b/validation-test/compiler_crashers_fixed/28138-swift-constraints-constraintsystem-addoverloadset.swift similarity index 80% rename from validation-test/compiler_crashers/28138-swift-constraints-constraintsystem-addoverloadset.swift rename to validation-test/compiler_crashers_fixed/28138-swift-constraints-constraintsystem-addoverloadset.swift index 30ba9bdb43493..80845e5a874ab 100644 --- a/validation-test/compiler_crashers/28138-swift-constraints-constraintsystem-addoverloadset.swift +++ b/validation-test/compiler_crashers_fixed/28138-swift-constraints-constraintsystem-addoverloadset.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/28139-swift-classdecl-findoverridingdecl.swift b/validation-test/compiler_crashers_fixed/28139-swift-classdecl-findoverridingdecl.swift similarity index 84% rename from validation-test/compiler_crashers/28139-swift-classdecl-findoverridingdecl.swift rename to validation-test/compiler_crashers_fixed/28139-swift-classdecl-findoverridingdecl.swift index 9c740801ffb33..4254aaba9b0cb 100644 --- a/validation-test/compiler_crashers/28139-swift-classdecl-findoverridingdecl.swift +++ b/validation-test/compiler_crashers_fixed/28139-swift-classdecl-findoverridingdecl.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/28143-llvm-foldingset-swift-structtype-computenodehash.swift b/validation-test/compiler_crashers_fixed/28143-llvm-foldingset-swift-structtype-computenodehash.swift similarity index 81% rename from validation-test/compiler_crashers/28143-llvm-foldingset-swift-structtype-computenodehash.swift rename to validation-test/compiler_crashers_fixed/28143-llvm-foldingset-swift-structtype-computenodehash.swift index c3ad84dcd73f6..46d76c86d491e 100644 --- a/validation-test/compiler_crashers/28143-llvm-foldingset-swift-structtype-computenodehash.swift +++ b/validation-test/compiler_crashers_fixed/28143-llvm-foldingset-swift-structtype-computenodehash.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/28144-swift-typechecker-substituteinputsugartypeforresult.swift b/validation-test/compiler_crashers_fixed/28144-swift-typechecker-substituteinputsugartypeforresult.swift similarity index 78% rename from validation-test/compiler_crashers/28144-swift-typechecker-substituteinputsugartypeforresult.swift rename to validation-test/compiler_crashers_fixed/28144-swift-typechecker-substituteinputsugartypeforresult.swift index 5769e15b5e2eb..c9145bbb7d607 100644 --- a/validation-test/compiler_crashers/28144-swift-typechecker-substituteinputsugartypeforresult.swift +++ b/validation-test/compiler_crashers_fixed/28144-swift-typechecker-substituteinputsugartypeforresult.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/28145-swift-constraints-constraintsystem-getconstraintlocator.swift b/validation-test/compiler_crashers_fixed/28145-swift-constraints-constraintsystem-getconstraintlocator.swift similarity index 82% rename from validation-test/compiler_crashers/28145-swift-constraints-constraintsystem-getconstraintlocator.swift rename to validation-test/compiler_crashers_fixed/28145-swift-constraints-constraintsystem-getconstraintlocator.swift index d49ae1b10e0fc..88af4decf2ffc 100644 --- a/validation-test/compiler_crashers/28145-swift-constraints-constraintsystem-getconstraintlocator.swift +++ b/validation-test/compiler_crashers_fixed/28145-swift-constraints-constraintsystem-getconstraintlocator.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/28150-swift-astcontext-loadextensions.swift b/validation-test/compiler_crashers_fixed/28150-swift-astcontext-loadextensions.swift similarity index 81% rename from validation-test/compiler_crashers/28150-swift-astcontext-loadextensions.swift rename to validation-test/compiler_crashers_fixed/28150-swift-astcontext-loadextensions.swift index cae8035f92250..a8915a03cb4d6 100644 --- a/validation-test/compiler_crashers/28150-swift-astcontext-loadextensions.swift +++ b/validation-test/compiler_crashers_fixed/28150-swift-astcontext-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/28153-swift-normalprotocolconformance-setwitness.swift b/validation-test/compiler_crashers_fixed/28153-swift-normalprotocolconformance-setwitness.swift similarity index 82% rename from validation-test/compiler_crashers/28153-swift-normalprotocolconformance-setwitness.swift rename to validation-test/compiler_crashers_fixed/28153-swift-normalprotocolconformance-setwitness.swift index 2640e4dbc5323..9cbaed893877d 100644 --- a/validation-test/compiler_crashers/28153-swift-normalprotocolconformance-setwitness.swift +++ b/validation-test/compiler_crashers_fixed/28153-swift-normalprotocolconformance-setwitness.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/28165-swift-archetypetype-getnestedtype.swift b/validation-test/compiler_crashers_fixed/28165-swift-archetypetype-getnestedtype.swift similarity index 80% rename from validation-test/compiler_crashers/28165-swift-archetypetype-getnestedtype.swift rename to validation-test/compiler_crashers_fixed/28165-swift-archetypetype-getnestedtype.swift index d4bc80c652aae..87aa5d2324dc0 100644 --- a/validation-test/compiler_crashers/28165-swift-archetypetype-getnestedtype.swift +++ b/validation-test/compiler_crashers_fixed/28165-swift-archetypetype-getnestedtype.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/28166-swift-parser-parsedecl.swift b/validation-test/compiler_crashers_fixed/28166-swift-parser-parsedecl.swift similarity index 78% rename from validation-test/compiler_crashers/28166-swift-parser-parsedecl.swift rename to validation-test/compiler_crashers_fixed/28166-swift-parser-parsedecl.swift index d67c126ab5e8a..daa9e92503a12 100644 --- a/validation-test/compiler_crashers/28166-swift-parser-parsedecl.swift +++ b/validation-test/compiler_crashers_fixed/28166-swift-parser-parsedecl.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/28167-swift-generictypeparamtype-get.swift b/validation-test/compiler_crashers_fixed/28167-swift-generictypeparamtype-get.swift similarity index 81% rename from validation-test/compiler_crashers/28167-swift-generictypeparamtype-get.swift rename to validation-test/compiler_crashers_fixed/28167-swift-generictypeparamtype-get.swift index fe4aec07050b5..f6d35ae4ddfd3 100644 --- a/validation-test/compiler_crashers/28167-swift-generictypeparamtype-get.swift +++ b/validation-test/compiler_crashers_fixed/28167-swift-generictypeparamtype-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/28168-bool.swift b/validation-test/compiler_crashers_fixed/28168-bool.swift similarity index 83% rename from validation-test/compiler_crashers/28168-bool.swift rename to validation-test/compiler_crashers_fixed/28168-bool.swift index c7496b3f1154c..8b99bfa7af010 100644 --- a/validation-test/compiler_crashers/28168-bool.swift +++ b/validation-test/compiler_crashers_fixed/28168-bool.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/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift b/validation-test/compiler_crashers_fixed/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift similarity index 80% rename from validation-test/compiler_crashers/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift rename to validation-test/compiler_crashers_fixed/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift index d79d446b1170b..59453e9f66620 100644 --- a/validation-test/compiler_crashers/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.swift +++ b/validation-test/compiler_crashers_fixed/28171-swift-partialgenerictypetoarchetyperesolver-resolvegenerictypeparamtype.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/28172-swift-parser-parsedeclstruct.swift b/validation-test/compiler_crashers_fixed/28172-swift-parser-parsedeclstruct.swift similarity index 81% rename from validation-test/compiler_crashers/28172-swift-parser-parsedeclstruct.swift rename to validation-test/compiler_crashers_fixed/28172-swift-parser-parsedeclstruct.swift index 14343b1f03c47..337d80c06416e 100644 --- a/validation-test/compiler_crashers/28172-swift-parser-parsedeclstruct.swift +++ b/validation-test/compiler_crashers_fixed/28172-swift-parser-parsedeclstruct.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/28173-swift-typebase-isspecialized.swift b/validation-test/compiler_crashers_fixed/28173-swift-typebase-isspecialized.swift similarity index 81% rename from validation-test/compiler_crashers/28173-swift-typebase-isspecialized.swift rename to validation-test/compiler_crashers_fixed/28173-swift-typebase-isspecialized.swift index 41a1d27a65f50..ba56174d865b2 100644 --- a/validation-test/compiler_crashers/28173-swift-typebase-isspecialized.swift +++ b/validation-test/compiler_crashers_fixed/28173-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/28175-swift-parser-parsedeclextension.swift b/validation-test/compiler_crashers_fixed/28175-swift-parser-parsedeclextension.swift similarity index 78% rename from validation-test/compiler_crashers/28175-swift-parser-parsedeclextension.swift rename to validation-test/compiler_crashers_fixed/28175-swift-parser-parsedeclextension.swift index 8d030b8b21191..86660c291ba50 100644 --- a/validation-test/compiler_crashers/28175-swift-parser-parsedeclextension.swift +++ b/validation-test/compiler_crashers_fixed/28175-swift-parser-parsedeclextension.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/28176-swift-parser-parsegenericparameters.swift b/validation-test/compiler_crashers_fixed/28176-swift-parser-parsegenericparameters.swift similarity index 80% rename from validation-test/compiler_crashers/28176-swift-parser-parsegenericparameters.swift rename to validation-test/compiler_crashers_fixed/28176-swift-parser-parsegenericparameters.swift index 87e8affd47ce6..77a52d016f19d 100644 --- a/validation-test/compiler_crashers/28176-swift-parser-parsegenericparameters.swift +++ b/validation-test/compiler_crashers_fixed/28176-swift-parser-parsegenericparameters.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/28177-swift-constraints-solution-coercetotype.swift b/validation-test/compiler_crashers_fixed/28177-swift-constraints-solution-coercetotype.swift similarity index 80% rename from validation-test/compiler_crashers/28177-swift-constraints-solution-coercetotype.swift rename to validation-test/compiler_crashers_fixed/28177-swift-constraints-solution-coercetotype.swift index 9c2282cee4c68..2b8777eccdc7a 100644 --- a/validation-test/compiler_crashers/28177-swift-constraints-solution-coercetotype.swift +++ b/validation-test/compiler_crashers_fixed/28177-swift-constraints-solution-coercetotype.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/28179-void.swift b/validation-test/compiler_crashers_fixed/28179-void.swift similarity index 82% rename from validation-test/compiler_crashers/28179-void.swift rename to validation-test/compiler_crashers_fixed/28179-void.swift index 8fee6898c41c0..3a54d3b5931d7 100644 --- a/validation-test/compiler_crashers/28179-void.swift +++ b/validation-test/compiler_crashers_fixed/28179-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)