Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.

Commit 579ad2f

Browse files
stishkinstas
andauthored
Adjust BVT validation checks to align with the changes in the sample file used by BVT (#48)
Co-authored-by: stas <[email protected]>
1 parent bce28ed commit 579ad2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Scripts/Tests/bvt.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def bvt(cli, definitions, bvt_host):
7676
raise Exception('Expected job to be in completed state when retrieved job list.'
7777
f'{after_compile_pre_fuzz}')
7878

79-
if n != 3:
80-
raise Exception('Expected 3 after compile job step'
79+
if n != 2:
80+
raise Exception('Expected 2 after compile job step'
8181
f' for job {compile_job["jobId"]}'
8282
f' got {n}'
8383
f' {after_compile_pre_fuzz}')
@@ -105,8 +105,8 @@ def bvt(cli, definitions, bvt_host):
105105
raise Exception('Expected job to be in completed state when retrieved job list.'
106106
f'{after_fuzz}')
107107

108-
if m != 4:
109-
raise Exception('Expected 4 after compile job step'
108+
if m != 3:
109+
raise Exception('Expected 3 after compile job step'
110110
f' for job {fuzz_job["jobId"]}'
111111
f' got {m}'
112112
f' {after_fuzz}')

0 commit comments

Comments
 (0)