mirror of
https://github.com/xavo95/repak.git
synced 2025-01-18 10:54:38 +00:00
Add v8a (4.22) tests
This commit is contained in:
parent
461bc66c30
commit
af3ef60f30
19 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
UNREAL_4_20=ue/4.20/Engine/Binaries/Linux/UnrealPak
|
||||
UNREAL_4_21=ue/4.21/Engine/Binaries/Linux/UnrealPak
|
||||
UNREAL_4_22=ue/4.22/Engine/Binaries/Linux/UnrealPak
|
||||
UNREAL_4_23=ue/4.23/Engine/Binaries/Linux/UnrealPak
|
||||
UNREAL_4_25=ue/4.25/Engine/Binaries/Linux/UnrealPak
|
||||
UNREAL_4_27=ue/4.27/Engine/Binaries/Linux/UnrealPak
|
||||
|
|
|
@ -12,7 +12,10 @@ unreal-version-for() {
|
|||
7)
|
||||
echo -n "$UNREAL_4_21"
|
||||
;;
|
||||
8)
|
||||
8a)
|
||||
echo -n "$UNREAL_4_22"
|
||||
;;
|
||||
8b)
|
||||
echo -n "$UNREAL_4_23"
|
||||
;;
|
||||
9)
|
||||
|
@ -26,7 +29,7 @@ unreal-version-for() {
|
|||
|
||||
generate() {
|
||||
rm -r packs && mkdir packs
|
||||
_version=(5 7 8 9 11)
|
||||
_version=(5 7 8a 8b 9 11)
|
||||
_compress=("" "-compress")
|
||||
_encrypt=("" "-encrypt")
|
||||
_encryptindex=("" "-encryptindex")
|
||||
|
|
BIN
tests/packs/pack_v8a.pak
Normal file
BIN
tests/packs/pack_v8a.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_compress.pak
Normal file
BIN
tests/packs/pack_v8a_compress.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_compress_encrypt.pak
Normal file
BIN
tests/packs/pack_v8a_compress_encrypt.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_compress_encrypt_encryptindex.pak
Normal file
BIN
tests/packs/pack_v8a_compress_encrypt_encryptindex.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_compress_encryptindex.pak
Normal file
BIN
tests/packs/pack_v8a_compress_encryptindex.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_encrypt.pak
Normal file
BIN
tests/packs/pack_v8a_encrypt.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_encrypt_encryptindex.pak
Normal file
BIN
tests/packs/pack_v8a_encrypt_encryptindex.pak
Normal file
Binary file not shown.
BIN
tests/packs/pack_v8a_encryptindex.pak
Normal file
BIN
tests/packs/pack_v8a_encryptindex.pak
Normal file
Binary file not shown.
|
@ -67,7 +67,8 @@ matrix_test!(
|
|||
(
|
||||
"v5" unpak::Version::RelativeChunkOffsets,
|
||||
"v7" unpak::Version::EncryptionKeyGuid,
|
||||
"v8" unpak::Version::FNameBasedCompression,
|
||||
"v8a" unpak::Version::FNameBasedCompression,
|
||||
"v8b" unpak::Version::FNameBasedCompression,
|
||||
"v9" unpak::Version::FrozenIndex,
|
||||
"v11" unpak::Version::Fnv64BugFix,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue