Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Sep 19, 2024
1 parent a6a1f15 commit 3cb84b7
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/src/verify/tests/ckb_latest/features_since_v2023.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1265,7 +1265,7 @@ fn check_spawn_cycles() {
let result = verifier.verify_without_limit(script_version, &rtx);
assert_eq!(result.is_ok(), script_version >= ScriptVersion::V2);
if script_version >= ScriptVersion::V2 {
assert_eq!(result.unwrap(), 1524861);
assert_eq!(result.unwrap(), 1525087);
}
}

Expand Down
Binary file modified script/testdata/cpop_lock
Binary file not shown.
Binary file modified script/testdata/debugger
Binary file not shown.
Binary file modified script/testdata/exec_configurable_callee
Binary file not shown.
Binary file modified script/testdata/infinite_loop
Binary file not shown.
Binary file modified script/testdata/load_arithmetic
Binary file not shown.
Binary file modified script/testdata/spawn_cases
Binary file not shown.
2 changes: 1 addition & 1 deletion script/testdata/spawn_cases.c
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ int parent_spawn_length_out_of_bound(uint64_t* pid) {

const char* argv[] = {"", 0};
spawn_args_t spgs = {.argc = 1, .argv = argv, .process_id = pid, .inherited_fds = NULL};
uint64_t offset = 1024 * 15;
uint64_t offset = 1024 * 17;
uint64_t length = 1024;
uint64_t bounds = (offset << 32) + length;

Expand Down
Binary file modified script/testdata/spawn_huge_swap
Binary file not shown.

0 comments on commit 3cb84b7

Please sign in to comment.