@@ -122,6 +122,9 @@ function choosetests(choices = [])
122
122
end
123
123
end
124
124
125
+ explicit_pkg3 = (" Pkg" in tests) || (" Pkg/pkg" in tests)
126
+ explicit_libgit2 = " LibGit2/online" in tests
127
+
125
128
filtertests! (tests, " unicode" , [" unicode/utf8" ])
126
129
filtertests! (tests, " strings" , [" strings/basic" , " strings/search" , " strings/util" ,
127
130
" strings/io" , " strings/types" ])
@@ -163,8 +166,6 @@ function choosetests(choices = [])
163
166
filter! (! in (tests), unhandled)
164
167
filter! (! in (skip_tests), tests)
165
168
166
- explicit_pkg3 = " Pkg/pkg" in tests
167
- explicit_libgit2 = " LibGit2/online" in tests
168
169
new_tests = String[]
169
170
for test in tests
170
171
if test in STDLIBS
@@ -180,7 +181,8 @@ function choosetests(choices = [])
180
181
end
181
182
filter! (x -> (x != " stdlib" && ! (x in STDLIBS)) , tests)
182
183
append! (tests, new_tests)
183
- explicit_pkg3 || filter! (x -> x != " Pkg/pkg" , tests)
184
+ explicit_pkg3 || filter! (x -> x != " Pkg" , tests)
185
+ explicit_pkg3 || filter! (x -> x != " Pkg/pkg" , tests)
184
186
explicit_libgit2 || filter! (x -> x != " LibGit2/online" , tests)
185
187
186
188
# Filter out tests from the test groups in the stdlibs
0 commit comments