File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import testing
6
6
const github_job = os.getenv ('GITHUB_JOB' )
7
7
8
8
const just_essential = os.getenv ('VTEST_JUST_ESSENTIAL' ) != ''
9
+ || os.getenv ('VTEST_SANDBOXED_PACKAGING' ) != ''
9
10
10
11
const essential_list = [
11
12
'cmd/tools/vvet/vet_test.v' ,
@@ -338,6 +339,12 @@ const skip_on_non_amd64_or_arm64 = [
338
339
'vlib/sync/many_times_test.v' ,
339
340
'do_not_remove' ,
340
341
]
342
+ const skip_on_sandboxed_packaging = [
343
+ 'do_not_remove' ,
344
+ 'vlib/v/slow_tests/inout/compiler_test.v' ,
345
+ 'vlib/v/compiler_errors_test.v' ,
346
+ 'vlib/v/gen/c/coutput_test.v' ,
347
+ ]
341
348
342
349
// Note: musl misses openssl, thus the http tests can not be done there
343
350
// Note: http_httpbin_test.v: fails with 'cgen error: json: map_string_string is not struct'
@@ -444,6 +451,9 @@ fn main() {
444
451
if os.getenv ('V_CI_UBUNTU_MUSL' ).len > 0 {
445
452
tsession.skip_files << skip_on_ubuntu_musl
446
453
}
454
+ if os.getenv ('VTEST_SANDBOXED_PACKAGING' ).len > 0 {
455
+ tsession.skip_files << skip_on_sandboxed_packaging
456
+ }
447
457
$if ! amd64 && ! arm64 {
448
458
tsession.skip_files << skip_on_non_amd64_ or_arm64
449
459
}
You can’t perform that action at this time.
0 commit comments