diff options
author | James McCoy <jamessan@jamessan.com> | 2023-11-24 15:22:00 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2023-11-24 15:22:00 -0500 |
commit | a1ded1b113d22f4ec8c14fab4aff5f9d0c43f8b4 (patch) | |
tree | c8badfb40c5cae99a6dfa44d6e7b475267935ccc | |
parent | 53cc835b51546f9ff68facebab2e0c6e97585e5b (diff) | |
download | rneovim-a1ded1b113d22f4ec8c14fab4aff5f9d0c43f8b4.tar.gz rneovim-a1ded1b113d22f4ec8c14fab4aff5f9d0c43f8b4.tar.bz2 rneovim-a1ded1b113d22f4ec8c14fab4aff5f9d0c43f8b4.zip |
fix(oldtest): always use a 64-bit int for swapfile block number
09d4133 changed blocknr_T from long to int64_t, so pe_bnum is now always 64-bit. This was an incompatible change in the swapfile format for 32-bit systems, but there have been no complaints in the past 9 years so just adjust the test.
-rw-r--r-- | test/old/testdir/test_recover.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/old/testdir/test_recover.vim b/test/old/testdir/test_recover.vim index 36a9cff073..fa8cc1abaf 100644 --- a/test/old/testdir/test_recover.vim +++ b/test/old/testdir/test_recover.vim @@ -266,7 +266,7 @@ func Test_recover_corrupted_swap_file() " set the block number in a pointer entry to a negative number let b = copy(save_b) - if system_64bit + if v:true " Nvim changed this field from a long to an int64_t let b[4104:4111] = little_endian ? 0z00000000.00000080 : 0z80000000.00000000 else let b[4104:4107] = little_endian ? 0z00000080 : 0z80000000 |