diff --git a/docs/handlers.md b/docs/handlers.md index 6612e08540..321b0615d9 100644 --- a/docs/handlers.md +++ b/docs/handlers.md @@ -46,6 +46,7 @@ | [`NETGEAR TRX V2`](#netgear-trx-v2) | ARCHIVE | :octicons-check-16: | | [`NTFS`](#ntfs) | FILESYSTEM | :octicons-check-16: | | [`PARTCLONE`](#partclone) | ARCHIVE | :octicons-check-16: | + | [`PE`](#pe) | EXECUTABLE | :octicons-check-16: | | [`QNAP NAS`](#qnap-nas) | ARCHIVE | :octicons-check-16: | | [`RAR`](#rar) | ARCHIVE | :octicons-alert-fill-12: | | [`ROMFS`](#romfs) | FILESYSTEM | :octicons-check-16: | @@ -810,6 +811,23 @@ - [Partclone GitHub Repository](https://github.com/Thomas-Tsai/partclone){ target="_blank" } - [Clonezilla Official Documentation](https://clonezilla.org/){ target="_blank" } +## pe + +!!! success "Fully supported" + + === "Description" + + The PE (Portable Executable) is a binary file format used for executable code on 32-bit and 64-bit Windows operating systems as well as in UEFI environments. + + --- + + - **Handler type:** Executable + - **Vendor:** Microsoft + + === "References" + + - [PE Format](https://learn.microsoft.com/en-us/windows/win32/debug/pe-format){ target="_blank" } + - [Portable Executable Wikipedia](https://en.wikipedia.org/wiki/Portable_Executable){ target="_blank" } ## QNAP NAS !!! success "Fully supported" diff --git a/python/unblob/handlers/__init__.py b/python/unblob/handlers/__init__.py index 98a0accba6..fb7cec4e93 100644 --- a/python/unblob/handlers/__init__.py +++ b/python/unblob/handlers/__init__.py @@ -37,7 +37,7 @@ zlib, zstd, ) -from .executable import elf +from .executable import elf, pe from .filesystem import ( cramfs, extfs, @@ -115,6 +115,7 @@ zstd.ZSTDHandler, elf.ELF32Handler, elf.ELF64Handler, + pe.PEHandler, zlib.ZlibHandler, engenius.EngeniusHandler, ecc.AutelECCHandler, diff --git a/python/unblob/handlers/executable/pe.py b/python/unblob/handlers/executable/pe.py new file mode 100644 index 0000000000..450919e564 --- /dev/null +++ b/python/unblob/handlers/executable/pe.py @@ -0,0 +1,104 @@ +import io +from pathlib import Path +from typing import Optional + +import lief +from structlog import get_logger + +from unblob.extractors.command import Command + +from ...models import ( + Extractor, + ExtractResult, + File, + Handler, + HandlerDoc, + HandlerType, + HexString, + Reference, + ValidChunk, +) + +lief.logging.disable() + +logger = get_logger() + + +class PEExtractor(Extractor): + def extract(self, inpath: Path, outdir: Path) -> Optional[ExtractResult]: + binary = lief.PE.parse(inpath) + if binary and self.is_nsis(binary): + return Command("7z", "x", "-y", "{inpath}", "-o{outdir}").extract( + inpath, outdir + ) + return None + + def is_nsis(self, binary: lief.PE.Binary) -> bool: + # Test if binary appears to be a Nullsoft Installer self-extracting archive + # see https://github.com/file/file/blob/7ed3febfcd616804a2ec6495b3e5f9ccb6fc5f8f/magic/Magdir/msdos#L383 + + if binary.has_resources: + resource_manager = binary.resources_manager + if ( + isinstance(resource_manager, lief.PE.ResourcesManager) + and resource_manager.has_manifest + ): + manifest = ( + resource_manager.manifest + if isinstance(resource_manager.manifest, str) + else resource_manager.manifest.decode(errors="ignore") + ) + if "Nullsoft.NSIS.exehead" in manifest: + return True + return False + + +class PEHandler(Handler): + NAME = "pe" + + PATTERNS = [ + HexString( + """ + // MZ header + 4d 5a + """ + ), + HexString( + """ + // PE header + 50 45 00 00 + """ + ), + ] + + EXTRACTOR = PEExtractor() + + DOC = HandlerDoc( + name="pe", + description="The PE (Portable Executable) is a binary file format used for executable code on 32-bit and 64-bit Windows operating systems as well as in UEFI environments.", + handler_type=HandlerType.EXECUTABLE, + vendor="Microsoft", + references=[ + Reference( + title="PE Format", + url="https://learn.microsoft.com/en-us/windows/win32/debug/pe-format", + ), + Reference( + title="Portable Executable Wikipedia", + url="https://en.wikipedia.org/wiki/Portable_Executable", + ), + ], + limitations=[], + ) + + def calculate_chunk(self, file: File, start_offset: int) -> Optional[ValidChunk]: + file.seek(start_offset, io.SEEK_SET) + + binary = lief.PE.parse(file[start_offset:]) + if not binary: + return None + + return ValidChunk( + start_offset=start_offset, + end_offset=start_offset + binary.original_size, + ) diff --git a/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe b/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe new file mode 100644 index 0000000000..41fb08e4b6 --- /dev/null +++ b/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38d49f8fe09b1c332b01d0940e57b7258f4447733643273a01c59959ad9d3b0a +size 1564991 diff --git a/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe.padded b/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe.padded new file mode 100644 index 0000000000..3d1f3e3d94 --- /dev/null +++ b/tests/integration/executable/pe/__input__/nsis-3.11-setup.exe.padded @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a2b771cbf044fadb9c584575f66037d3126a75c6a20faa5e53d5dad56bb0443 +size 1565023 diff --git a/tests/integration/executable/pe/__input__/zip2exe.exe b/tests/integration/executable/pe/__input__/zip2exe.exe new file mode 100644 index 0000000000..536505687e --- /dev/null +++ b/tests/integration/executable/pe/__input__/zip2exe.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407be964e953ca6fe0380f56f1df3d72f7789cb210506ca27cc428cb654ec609 +size 23040 diff --git a/tests/integration/executable/pe/__input__/zip2exe.exe.padded b/tests/integration/executable/pe/__input__/zip2exe.exe.padded new file mode 100644 index 0000000000..387fdc059c --- /dev/null +++ b/tests/integration/executable/pe/__input__/zip2exe.exe.padded @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d34d054b23078eb6b86b82d3dc152f7f9df983fa1654f8dd49320bc166129e +size 23072 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/0-16.padding b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/0-16.padding new file mode 100644 index 0000000000..a2c372b2fe --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/0-16.padding @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374708fff7719dd5979ec875d56cd2286f6d3cf7ec317a3b25632aab28ec37bb +size 16 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe new file mode 100644 index 0000000000..42190ee9e6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3474e0a8b672e53f9667c72322788e459c40f9d0632705f790fa329e539edeac +size 1565007 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-header.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-header.bmp new file mode 100644 index 0000000000..a407719522 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-header.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3b85a4a7bd2c6baa7b2b24590ea69e656384130fa8212e944016c46ac7e7d1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-wizard.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-wizard.bmp new file mode 100644 index 0000000000..64d4ec293d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/modern-wizard.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411961864a8edb7cc2ba384e702bbb787040ea47488d2cefc2ef2c6f0a55a832 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/$PLUGINSDIR/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/GenPat.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/GenPat.exe new file mode 100644 index 0000000000..6c1a00f7ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/GenPat.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f374a94eeaf073693435b43ca6ea3d5c2f89ebc1db6a205321ae3748eedf684b +size 25088 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/MakeLangId.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/MakeLangId.exe new file mode 100644 index 0000000000..25e3269af5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/MakeLangId.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f7247cf1dbc2d3a014ef57338020f18170930ca13e3ac509607bd3245fec52 +size 24576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/RegTool-x86.bin b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/RegTool-x86.bin new file mode 100644 index 0000000000..15ed343b6b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/RegTool-x86.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7815a8f282e858512477f1de7ffe93b25b028a0c9456e65af00462a8841897e +size 5120 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/makensis.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/makensis.exe new file mode 100644 index 0000000000..8ee2070aa0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/makensis.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42850802704ecb11163f7e0329d35ee54bd288953200d4966e226d572848cfc5 +size 468992 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zip2exe.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zip2exe.exe new file mode 100644 index 0000000000..536505687e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zip2exe.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407be964e953ca6fe0380f56f1df3d72f7789cb210506ca27cc428cb654ec609 +size 23040 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zlib1.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zlib1.dll new file mode 100644 index 0000000000..b1a5160cfb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Bin/zlib1.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78eab41b346598736be1196eb949660b710356ad83204f6ef5bf9585c94731e +size 81964 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/COPYING b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/COPYING new file mode 100644 index 0000000000..d32ba2190f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/COPYING @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7dd514003ab96cb3ddccbc028fe5c795fccf57dc41f21cfb9d4dd16ead23bf5 +size 15632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/big.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/big.bmp new file mode 100644 index 0000000000..9866c8ae71 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/big.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22b2ada7263ec33431ff251f1484c7a554c36f34ec30beb25e34861f9e1dfc9 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic-cross.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic-cross.bmp new file mode 100644 index 0000000000..04b22344bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic-cross.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438a514508b56db7c188d9826662fe39639f470e877ef2f659edae7139e4e32c +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic.bmp new file mode 100644 index 0000000000..fdbc7ff955 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/classic.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a5e0e33a8c8af0ddc313126a7767632890373444f58a4f20c7fee75eeca65c +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/colorful.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/colorful.bmp new file mode 100644 index 0000000000..c943b4366e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/colorful.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4318c3d4f25b1fcfabe3a1b44d56957da06224f64534944aedd4b7d1c55a8a84 +size 2512 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey-cross.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey-cross.bmp new file mode 100644 index 0000000000..4770ea4f76 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey-cross.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1c42c656e4f687ed4ee54321d8f23ff4e80242b104388c1d275ad921e0e011 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey.bmp new file mode 100644 index 0000000000..8507b61ab4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5ffd9b69b50071b44603fa517230456af743b4a8abe117ceeb64104769c2ac +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/modern.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/modern.bmp new file mode 100644 index 0000000000..d42905a6b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/modern.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac685bb79e6fe75e6e54b9fd4e9524d8da6bc8acb269f50c42bf372af671570 +size 1652 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red-round.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red-round.bmp new file mode 100644 index 0000000000..9a213a83f8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red-round.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b74ffb1131596fa3059c3f025e28720b41b4fceb512b7388cd1e19894908fe9 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red.bmp new file mode 100644 index 0000000000..8eecd3ead0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/red.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12080d15e31fc428116a72c32245e9c7c3b222cae4e4608a8433f16cc56f7bf +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round.bmp new file mode 100644 index 0000000000..3638ebfec1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e84996353100d025920cd81a0f21b81b3849c20fc4e4a547692d5d0afc6e17a +size 1616 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round2.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round2.bmp new file mode 100644 index 0000000000..7483c6dc5f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple-round2.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcd7729376479d5df262fedcc7f5a6b3fffc4f8d6b9d5fc2cba304f944f7710 +size 1844 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple.bmp new file mode 100644 index 0000000000..468ca2b45e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Checks/simple.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22aca4a5b82422a009b91a046176df6cd7265050b7c9d4950c71b1b93f4c78f +size 1616 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis-r.bmp new file mode 100644 index 0000000000..e50092b6f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a54f3e88dc3176c97f104546c8aa913172f0bfbb826d0e8aea9abcfdc3979f0 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis.bmp new file mode 100644 index 0000000000..e65c08cc4b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766a893fe962aefd27c574cb05f25cf895d3fc70a00db5a6fa73d573f571aefc +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp new file mode 100644 index 0000000000..a407719522 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3b85a4a7bd2c6baa7b2b24590ea69e656384130fa8212e944016c46ac7e7d1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding.bmp new file mode 100644 index 0000000000..8e573190a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-branding.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6dadddb9bd51c4c25283fb726a3115295d872b786df2e73872a41d00e80fea +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp new file mode 100644 index 0000000000..831ef074d3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533588be2790810fb372797e7355c948c0b13ac544ea34f0e021735ca48e5907 +size 8932 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey.bmp new file mode 100644 index 0000000000..774c138bd7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51016cfd0222dadd7a0ce445c9a87e51bf3593adcd669b0782a86f7c5391d4eb +size 8956 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp new file mode 100644 index 0000000000..eb676b80e7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4326ae071f3db133a58252786b39c1a76146b9263e03dd7e8566013d5dbba1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro.bmp new file mode 100644 index 0000000000..1beaedaff8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-metro.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74ed1397c5a50c22ddd4da1c01cf1a36484fa38623051b4959bb6e01d657547 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp new file mode 100644 index 0000000000..217a0e93cf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ff3142812ae83d094add3c1f4ece7ef917aff44a19dbca1882603f0c6200e0 +size 8996 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp new file mode 100644 index 0000000000..0c1777a247 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec748997c1c8ea0e9d3dd660d4acb696bc6cf160c201a48c04d608cff779d3a +size 9008 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-nsis.bmp new file mode 100644 index 0000000000..107c43d9ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552f10c2b0a34eaea274ed8ccbc9d754eeae5826a10a3ef224685bf1d8eac2cf +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp new file mode 100644 index 0000000000..bc8a449ee0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cfebb59f0ba1b9f1e8d7aa6387f223a468eb2ff74a9ed3c3f4bb688c2b6455e +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r.bmp new file mode 100644 index 0000000000..b434ebf6fb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd146e39af28cec251d63da453cb8f04b74904a643f4c3dab52ef2b5bcb4bb3a +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp new file mode 100644 index 0000000000..2cb2690686 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d1eed1ee12e91bc38a58108139fa8d3a220382069ff8c0eb9261ea52f35326 +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp new file mode 100644 index 0000000000..3a9a472f89 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6cde334e9a70979efad038bc1ddc62191974e99b662c3f264b2e95e966c052 +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp new file mode 100644 index 0000000000..41a6f00288 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3e16598f8fed5a42f4597dac5c1773e7e471797872accff0042affabeb0b4f +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall.bmp new file mode 100644 index 0000000000..1779e045c4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange-uninstall.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f6b1effac717dcb899f45b99f5755a5b12825a1b61d7d6bf23efffb3ac36e7 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange.bmp new file mode 100644 index 0000000000..274094bb4a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/orange.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9e804ce1a391f8e603b7b9c732a6529c1e81be4d12f125c8562ea9d49095c2 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/win.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/win.bmp new file mode 100644 index 0000000000..a702a07192 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Header/win.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e58b3e6e3896a4bae05fa2f6adc238d391aa80bc51c138f851f373c6c23e518 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-install.ico new file mode 100644 index 0000000000..fd19604977 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8e1efce449a4c6658305f979f2826153fa97d48579259cd09180ba2010b995 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico new file mode 100644 index 0000000000..7894ff0e44 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd58c15fb0848994cb3f1bcc179e53a9db7d962778ee036b560b8fedd07792d8 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-install.ico new file mode 100644 index 0000000000..515f936244 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7446a65155c7d71816bf6321796a3e2c004eb4a2f50717035cd96f7b21b14f1f +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico new file mode 100644 index 0000000000..cc672c5715 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e725e4c212b71d426cd85cb44741fb0e5fd50406c0cdca447663d3fd4003fceb +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-install.ico new file mode 100644 index 0000000000..d1f3920cde --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2ca9ce7cea0ba7215dd257920790156933f1a50054ea051419c00f37477456 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-uninstall.ico new file mode 100644 index 0000000000..977a0b35b3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/box-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797f66b21534d429f052180423fc22b730311a9c97bdf98d632948f9f859c04c +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-install.ico new file mode 100644 index 0000000000..21128bbcf6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09769e39fa641ae88851ed5b64173a8abe0d494dc937a0c78e0255df9d2fed1 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-uninstall.ico new file mode 100644 index 0000000000..35dc08384b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/classic-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9673909834dcedf34932d59a80eb6ae19210afdfa054241959ac226bf504a27 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-blue.ico new file mode 100644 index 0000000000..b13836e711 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87df44f81ac4ff83e4dce0b5d819afa7fa65288f515a5219cf54d7317be8b295 +size 2238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-grey.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-grey.ico new file mode 100644 index 0000000000..2a7fefeeb0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/llama-grey.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f17ec9f401f9e91c88c5cd4d216397d714c05c549340acccd3221abf9c92b0c +size 2238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico new file mode 100644 index 0000000000..2bcb7683af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2bd76e8d1e601f93c667ae6319cf4aeed24ee30508dca7f1b845789033e3ed +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue.ico new file mode 100644 index 0000000000..4427a1324d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666d7f1da2d3aa65a638be9818e4bb24e9632eabab4d642f7d9dbf8cf3bffc01 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico new file mode 100644 index 0000000000..37f66d1bdd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5681d2ed2efef52faf7fbcecc9da2e07ba6f8eefde7dc89cb33abecccfc1d3f +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-full.ico new file mode 100644 index 0000000000..f18076f79c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a9fc72823ead4f0065b032b81adecda1ed0f1789c23b15e52df531912db1d0 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install.ico new file mode 100644 index 0000000000..20bfacf486 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c36884a12b4bde8db9a3587f7bdb05e7232a4e9a095202ace4eba693412e05 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico new file mode 100644 index 0000000000..1076a472ea --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5435163d7d1e79ca1cfda01ba929dcd4dbf29cf69ed60f5448d822f0e26d03 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico new file mode 100644 index 0000000000..b89e404046 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a766a15db31e4fec07226cceea64ab411854d751354a35dec2aa305fc8849f3 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico new file mode 100644 index 0000000000..76ff861487 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb365bd8f0ca0b17d7a94e67b0b6aad3ed7aced6fad233907a492e796ff3c337 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico new file mode 100644 index 0000000000..01c7a5fb07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bd1830e3e05311ad5c4c6abdcb6f7cfe8f13c79a51fc48669729a28ac8a181 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall.ico new file mode 100644 index 0000000000..6631ba4980 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/modern-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5037c877cb134c1cd303367cfcc2afecb0517522ff8ad98544d4eb158ddc6bda +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis-menu.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis-menu.ico new file mode 100644 index 0000000000..0193f6cef3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis-menu.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e007305cc3e89bb786c212f14bb37a5b5e7f80cb5755ffe9e4eb9110f97c1f8c +size 39119 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-install.ico new file mode 100644 index 0000000000..e270dd4316 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1a02e00f70f5e8a90568a06e9953af6688d7083851f3d14453b4a2030fec73 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico new file mode 100644 index 0000000000..612bd7b996 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fa9188e475bf1698d4a6953c4ad6f4bfc25677d7cf149a605fd91e3f12100c +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico new file mode 100644 index 0000000000..aeb4b61a64 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453dc599a43ba980b310e0420fc8fcc95ea06dc653413efd5b64e087635045b7 +size 13111 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install.ico new file mode 100644 index 0000000000..2c33b2a36e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747ef2a4ef0eecc653d86a86b3f38cb36ea18d799e39b6d948ed5340ae354ab8 +size 11697 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico new file mode 100644 index 0000000000..7e070b81cb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96899982c23b43956b425c9fed6118651397b8602748236fc8d89203d02bfd87 +size 12533 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico new file mode 100644 index 0000000000..80f415b183 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af57f376d93c091c7deff84082c0b8267962a70c9a018f3981300ece8be165e9 +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install.ico new file mode 100644 index 0000000000..8af2e13185 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5116dd02ab3004ce701135f7d09211b6be3aadfb4c1559d7620ca05f11bf8 +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico new file mode 100644 index 0000000000..fb737c6cd8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f45b9a6aaa741ab473ed4e53811cf0b40eeab7c4477d4bc47f06c94b443e99a +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall.ico new file mode 100644 index 0000000000..5284f667ee --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/orange-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48498bf6cee860bc17e00a4426a0b7a9633b264a74e89fa288668a8e69c02ade +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-install.ico new file mode 100644 index 0000000000..77cc7fd42e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8080918da76cbc0a9df627c59eccaea1b6142008a67f9affd1a688fcfb66c0e +size 5390 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico new file mode 100644 index 0000000000..d2dbfe7798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652f01a3a81456cc1cd1aabc7e14e9506db3c1298139e82da3b522563e933b4e +size 5390 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-install.ico new file mode 100644 index 0000000000..d70e0c4082 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3ec42f393635307ae2e369ef50a8eb0fbbe02cd2f82c4c6d3486d294ddcceb +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-uninstall.ico new file mode 100644 index 0000000000..5eff32b9b8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Icons/win-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5bae653fd5a00b6baf38a4eab2b2a0412c1932fa533570cd233d01437bf7bf +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/arrow.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/arrow.bmp new file mode 100644 index 0000000000..30c700ae68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/arrow.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1dfb50efbd9dc69818175eadd0ca8c8f975ae6916f83523505e488d48f21e6a +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/llama.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/llama.bmp new file mode 100644 index 0000000000..3956976546 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/llama.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9af52dc2c1444a2ae53f3cca9282bb433af4ef4ed850c1133447b7ba731174c +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis.bmp new file mode 100644 index 0000000000..8a072b00c7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cd4e5a3d2ebfdc477ca00b5b8c127df149df80cf089e851369db75c61cef4b +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp new file mode 100644 index 0000000000..64d4ec293d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411961864a8edb7cc2ba384e702bbb787040ea47488d2cefc2ef2c6f0a55a832 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp new file mode 100644 index 0000000000..bac99469a6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e138faec4410e66f0b4e3199badf019bc83c1fa13f4409e8719b6762ed908be +size 51832 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp new file mode 100644 index 0000000000..c78603aff3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2079f7a3eba60e0d9ee827a7208aa052a71b384873b641de5e299aeb8e733109 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp new file mode 100644 index 0000000000..6dd2c161c5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b4a33ada04c9919fed2028562042ca5ffa8918f45905f6c41c68850f58ff5a +size 51920 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nullsoft.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nullsoft.bmp new file mode 100644 index 0000000000..5eb6ed71c6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/nullsoft.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a5b209189b77423be7e213444e30f2d6f79ba688fcf9c063b5618ebb625a51 +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp new file mode 100644 index 0000000000..74c33adc4a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076221b4527ff13c3e1557abbbd48b0cb8e5f7d724c6b9171c6aadadb80561dd +size 52572 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp new file mode 100644 index 0000000000..e3d5bab911 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0278ae60eddd3e03cdb37a873221df0656eeb4541b0190898de1ce8f0427a5e +size 52572 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp new file mode 100644 index 0000000000..9c638a0d1d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498d402163d5d4578d8e76a22c97ab927cf31bf16f7125938cf03cc200c7a290 +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange.bmp new file mode 100644 index 0000000000..83f557b580 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/orange.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b2f12e01cbea88d4f645f797f2ca6107d76ae13cd1be6dc532b759bfe0d925 +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/win.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/win.bmp new file mode 100644 index 0000000000..a9e536d4dc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Graphics/Wizard/win.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad2dc318056d0a2024af1804ea741146cfc18cc404649a44610cbf8b2056cf2 +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nlf new file mode 100644 index 0000000000..1ab347030d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db12941460eda9e69ffeb7dbbc9df8fe5c2314853d3e2cc66b19a326b181532 +size 4876 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nsh new file mode 100644 index 0000000000..7a49284451 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Afrikaans.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71a399cca66034e993ddd5893290e62526c487cfe79f9487b9dfd969d97aca8 +size 7131 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nlf new file mode 100644 index 0000000000..9dc0305bb4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842f88c081ed8c8a42a87e6c7e1d3f58837955bceb72909b581213e051c9f60d +size 5537 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nsh new file mode 100644 index 0000000000..7592c91b9d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Albanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f21896faf8646b3a04d17476d60a7101cd4c9295f6560b00215ecea13b268c +size 8065 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nlf new file mode 100644 index 0000000000..72ad229024 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686b85e458dcdd30b0dfd2a902b1f671abfc5e3358485699e23d952e34f74c7d +size 6290 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nsh new file mode 100644 index 0000000000..94e32004e6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Arabic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c371d8cb0f183c705eb5e4a85671dd3e3ab1faae0fb2b7e0e183c6a23aff1731 +size 8698 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nlf new file mode 100644 index 0000000000..9e8d67f4cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a342f1d35f9ac1ec9fd0deb5a0ff76a9e2bab8786f77bedd0d44f34a319cf636 +size 7230 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nsh new file mode 100644 index 0000000000..fcfda3622c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Armenian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fff0b8d166ffa98ae35a6e4b9f2867cf9157ff216bc12548578ff62a1562a0 +size 9929 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nlf new file mode 100644 index 0000000000..a9a5ea4579 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112da4de3de9959ba66e677f3800870129e6126cfa930512b818528c56cf14b5 +size 5607 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nsh new file mode 100644 index 0000000000..bd9baee19e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Asturian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c26872e741af8363d1a8aa8c92cd594707482dcc2235124cbc177295cf56fd +size 8026 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nlf new file mode 100644 index 0000000000..cfae4648c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef56a6886873c6c847635fa474bb086b45738f13d0bf1f85ed2569c5cdb183a +size 5249 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nsh new file mode 100644 index 0000000000..448e485995 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Basque.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924f33ec0417494149f2aa8534a11198003ab672357911854ceaa0d26b33c89d +size 7845 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nlf new file mode 100644 index 0000000000..7a23d8b63c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f05a37db6f4e60574309dbcd4d3010006b888d8f214340c9846aa2c1f02963 +size 8498 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nsh new file mode 100644 index 0000000000..c3915a1b97 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Belarusian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5637212a42f812326d5552c9cc8ae675bbae094b330835a7318a9ab8565f1d5c +size 10690 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nlf new file mode 100644 index 0000000000..6fa4dc5f98 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237cd0f56ba5c874bc177f03faa0b965a98d7e04ed035468b15e5f9fedf5a266 +size 5332 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nsh new file mode 100644 index 0000000000..079967d4e8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bosnian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c18e1bc6946174421d3e3a9c5456daf393515b5146b3490d07c1ee979346d4 +size 7719 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nlf new file mode 100644 index 0000000000..9a1a279718 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def6fb144908a12914b524beb13137d3c42649d65cb74700b3af86865f541702 +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nsh new file mode 100644 index 0000000000..2a91828cce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Breton.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6155f93710a5e4a82c72823e20d2918a17c87607dc58a1ff50c1f88276f009 +size 7565 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nlf new file mode 100644 index 0000000000..e13d1d2f2a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6aab84349dd67f28a4c9911873bef9f6780fdb925dcab12a8209cb49ff1d04 +size 8143 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nsh new file mode 100644 index 0000000000..d3ae68bc93 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Bulgarian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8a993e3f480d5160be59ce2a7ad8de1e5486d22d446401171070d23307e272 +size 10245 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nlf new file mode 100644 index 0000000000..8c7e6706c1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2f5586c36d9780820e80e6599682719d379a2fadb71f59a68c72897843b2f6 +size 5830 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nsh new file mode 100644 index 0000000000..2b22e2d8b7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Catalan.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130bc28b9f471d5aa0ddc59c57209ea30f6d669d2df40225728eebf285a6b13d +size 8028 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nlf new file mode 100644 index 0000000000..aac96bdee1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76067d17ebcb9a5ea701f9650609d796e9216bc20da28716fd3b95f23f03d53f +size 6407 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nsh new file mode 100644 index 0000000000..e5cff43a57 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Corsican.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9b414f1056bd8a415a29588d9373683e4eae526cb97c4c5c8f7f7dd510ed43 +size 8569 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nlf new file mode 100644 index 0000000000..0f46bfa9aa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84420e45a4e0f0e1a8876b89dd429aaaa728af75d099cc9fa2864346c442484a +size 5231 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nsh new file mode 100644 index 0000000000..a8adb2d5b8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Croatian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdba60beb62c104f5c783d2f6f17c82ca4e2228711fa7b13571cc3cea754777f +size 7610 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nlf new file mode 100644 index 0000000000..6751524403 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb34da78591160e3b200175470b0138e164c59cc9d32fd7d0b477f2d565b9e3e +size 5869 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nsh new file mode 100644 index 0000000000..e31bc1d1af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Czech.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0523b5f74af59601eee705bbcbc3c166af4467003b19b8fddc9a9e7c21e0807b +size 8296 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nlf new file mode 100644 index 0000000000..fed29e85e9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee02dfa6029317172e463dabda9ac7f27fbbb03a3ef138bcb4df56a4330eca05 +size 5387 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nsh new file mode 100644 index 0000000000..8e7afdf832 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Danish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb1c5a7dc0d2b92154f91ceead5765d344e0b73199cd465b96c57fd977eb57b +size 7990 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nlf new file mode 100644 index 0000000000..098c8f265d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23625928bdbecf724dfb31e313dea70ab4d37c1829234d6b9ada8451a5d2295 +size 5278 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nsh new file mode 100644 index 0000000000..d792ba251f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Dutch.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f54a14d44cb9b3c24d9329663315003ebcc63fe1da166fc405c15012615b1a +size 7925 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nlf new file mode 100644 index 0000000000..8cc34d507c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af27bb146b370531de867dc8eaabb8203504c488294b01a0980e2e6f5a84ea0 +size 4945 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nsh new file mode 100644 index 0000000000..a979323d54 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/English.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d0d818594024910304eec9c65888d4dd4f88b844bb620f60f4a65f8b266f2b +size 7745 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nlf new file mode 100644 index 0000000000..880122029a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51547e4d35c2f3235fb30a30b069e43d1d3e77b3a91cfed5828320f60ea1a14 +size 5341 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nsh new file mode 100644 index 0000000000..45195eb216 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Esperanto.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba032bbaa8f3576743a693c473a97d95e2e3f8d9475400ceb16b8e273fa1f3f5 +size 7994 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nlf new file mode 100644 index 0000000000..626f0136db --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1803d376d4383d4039ee11c7352c3508d9b1134f9656754dc1d05d6ef87a9a6 +size 4897 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nsh new file mode 100644 index 0000000000..c09a1dd25f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Estonian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069f87bbdf48b266d422c9fe46e3d420377a2b8d8cb4724316423bba4ef4e294 +size 6816 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nlf new file mode 100644 index 0000000000..ab83ed3213 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1495ed20b9ed1c24ddba107f226408d737d82516288e8d905c835e6b31b95c6 +size 6951 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nsh new file mode 100644 index 0000000000..946b9a61d3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Farsi.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b80758410c05dce61d2e32157f6c4417ad5371798136d2a73014e5c79121ab +size 9506 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nlf new file mode 100644 index 0000000000..240cea87ed --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfc5046fdba5b7a25571ff80801661a411467fd98a1fd4887c2bf877ef4c2c8 +size 5019 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nsh new file mode 100644 index 0000000000..f4a48df757 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Finnish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc8204b34b6714841bdf5af9edb80ce3b9130798fc749c18689b249d36f3ca6 +size 7247 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nlf new file mode 100644 index 0000000000..9615c7a692 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08636d861bfbbf0e55a282cbf702a96b6b112ea64203a269b21c94501978cecc +size 5820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nsh new file mode 100644 index 0000000000..fed565f1e7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/French.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4801c192ab30d0c6e1664abb37b00f2f32b5a9dfaf45c0c15325982cb2a486 +size 8640 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nlf new file mode 100644 index 0000000000..55dba2de35 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0876dba60597d4c7e55b6ad3964b644ea1a59ab81be7936f07ebc06ee046ee29 +size 5428 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nsh new file mode 100644 index 0000000000..5bb7871e82 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Galician.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e75b56bd61b320edaf55ed756e86600b37c491085cd5aa105a2237f1fd970a +size 7419 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nlf new file mode 100644 index 0000000000..2c8903e180 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b075c6c1b402627c2199602080e6dba9c951ff4a6bea7aeca88da65bd0efd9 +size 10068 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nsh new file mode 100644 index 0000000000..4e7b6eff68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Georgian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2785bd0c1860ead0facf61b18fd2964ef523290d1679201c6001c2543ecc3996 +size 11734 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nlf new file mode 100644 index 0000000000..ecb0df85a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2aa56d86cd597c6e302201009cb8118a39e5d46ec4c92e019b6bfea19756d21 +size 5777 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nsh new file mode 100644 index 0000000000..e41874e789 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/German.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82791806bf8693b2bf7f9e4ae48657c7584e192c1c11b3203db51bd62cb88e75 +size 8823 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nlf new file mode 100644 index 0000000000..6e7413048e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a4176de414cebf277e06c055ea128ca06c2ba6fe6138937b7cbf33013d33e4 +size 8477 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nsh new file mode 100644 index 0000000000..68e785884c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Greek.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98077189f5f3074b3d23565b5a5c5bb939c02e606986c9b1155a614beae2cd0 +size 10898 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nlf new file mode 100644 index 0000000000..1b3dd9984b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c954912110444c970b84e291fa73b020aa75f75f09021d5a6387c1b428f2ca6b +size 5949 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nsh new file mode 100644 index 0000000000..4acfc1e3cb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hebrew.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540daea8739cfb440be99e4ef5c5df4aff45b28892bd1b39b9cb37c23bacf139 +size 8803 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nlf new file mode 100644 index 0000000000..339fea4bdf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1fd207f4c6ece7121d69bf68bf0a108fc93eb0172fbf7cc241f4680d2a8ce59 +size 10610 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nsh new file mode 100644 index 0000000000..616c6c9078 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hindi.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888da761fa6b8e6fd61e6521343d9b58a5438515c22c2f4ee74d48636d0cf441 +size 13430 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nlf new file mode 100644 index 0000000000..50a33e4137 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e096270dcd8d8fddba34601c56e051abc89a793ec62445fdf14f0bbb9529c8e +size 5806 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nsh new file mode 100644 index 0000000000..ba0a2dc1b2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Hungarian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b17e597afbdd0ee794726841336549dea0511f9d30c9c23c1ecb35d140c3847 +size 7656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nlf new file mode 100644 index 0000000000..7811d350f6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00b9681b6c185268f9ad097046c2b65835df1a34a2b7dc380a57de186c7d3c3 +size 5694 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nsh new file mode 100644 index 0000000000..5495f1bc29 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Icelandic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ebe5912f15b3a64ec5db147c606da6d599ddcc553d3bbe90696133eb9b8147 +size 7663 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nlf new file mode 100644 index 0000000000..235cf8a837 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a095efb924f5aae164dc5a14faa7c529afe9c8b71d9027d7e7adff0efde15f32 +size 5758 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nsh new file mode 100644 index 0000000000..c17fc079af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Indonesian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ac5d883eabc10d94040daf1c65deaf24e81a4a39484adfdd1c6a7c5e4f1fb6 +size 8220 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nlf new file mode 100644 index 0000000000..cd8db2fe24 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87c9e139f92703e589d83bc5a594d60eb829d7acd4c148f8623c818c8868236 +size 5873 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nsh new file mode 100644 index 0000000000..89b70d0788 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Irish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272e1f53910d1f41a5d6ff1fe3cb8a6d6369397b806437b04ef25bff89332aae +size 7775 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nlf new file mode 100644 index 0000000000..4a3bf73b6b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1371f958c8ccc3a0f23ab4bf1ceccefd962ba4785534531de70dacfe5d6041d6 +size 5598 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nsh new file mode 100644 index 0000000000..c137fb221c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Italian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356d5dd50c326e8a8f71a52340c0ad764474b30a80733e563519fa2bd38da494 +size 8597 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nlf new file mode 100644 index 0000000000..fffca7ff47 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4cdcf393b15802c75351273250e192db45d5af82d876cdc6c16151430e4642 +size 6614 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nsh new file mode 100644 index 0000000000..8d9ac937b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Japanese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04f47fbaf590f1ffa1ce8054ad7cb331c70c932f51637e6a7b711bb2890b7e9 +size 9784 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nlf new file mode 100644 index 0000000000..1353e91889 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ed4431ff6e6996773db8ea462f78a68bd1819fb2ab3fa78814ac57014b6238 +size 5499 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nsh new file mode 100644 index 0000000000..74b90865d1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Korean.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9482e17687e0612dd87c5320bda8a62c0de8fed388e554d6530e312f238fe5df +size 7995 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nlf new file mode 100644 index 0000000000..6049cb37fe --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865d5c15fb58435fcfe28d7cac011b1d6b32898e23a8a606b4967df4c968d0ea +size 5853 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nsh new file mode 100644 index 0000000000..f36b601e63 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Kurdish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f660de2b5df150fb6b5a58f8da3f9a8826bd539abe2bf2b4e2c1e9cb27e0c9 +size 7974 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nlf new file mode 100644 index 0000000000..bd8ceb2d85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b7069796f18de481179537f2c55928e1da1272738f0c9a4f5f53b022264f3d +size 5605 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nsh new file mode 100644 index 0000000000..fcf043d19b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Latvian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a489a62651be619490073df6088af25967f04b7076dc5aebf0ef517d5648cb9 +size 7670 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nlf new file mode 100644 index 0000000000..9211138f07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b552f3f7ebc194101c52b11377445740a106ed689f34d9bea76b1c834fc888a0 +size 5330 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nsh new file mode 100644 index 0000000000..a81087240e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Lithuanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bfc1dd7673aa8062ff6a184eda75c427c18f41f51d607df33b3d22f5b4904f +size 7240 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nlf new file mode 100644 index 0000000000..b5c57f39d7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e641014e6ba4845af8798078d71ad166c9b0b3ebd90efe7fa316941e39a18307 +size 5714 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nsh new file mode 100644 index 0000000000..4108dbf52a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Luxembourgish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a221bfda955710f60e5bb845b2df0349b02661ddeefb4b2c10d3840698e0d7d +size 7834 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nlf new file mode 100644 index 0000000000..eb265262bd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f05cffba5a82082dfed55524803d8e4a1674e8cb79a99bce699b0f3627e6e58 +size 8255 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nsh new file mode 100644 index 0000000000..61eb834a72 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Macedonian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81defbfdbeec0f43a8281c97f7cedc7db1777aae8958724dc1553e4c1edeebb3 +size 10317 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nlf new file mode 100644 index 0000000000..4385400988 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bc3b1413a63ea98a3a807581c87fa221a18fa11a0883e6bdecdf4e7380eae5 +size 4793 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nsh new file mode 100644 index 0000000000..d2cd8bcee4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Malay.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875c4cdbd9644ab81943477041fdbe45e4c6da6859624132cb115631646a38a5 +size 6923 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nlf new file mode 100644 index 0000000000..fe3d4c44d6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e0c247f0891dcd4c7df330c24845220d9b2500c934859b8ac343acdf6fcff5 +size 7228 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nsh new file mode 100644 index 0000000000..73de3d36d7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Mongolian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b661fd39d284f1183dcf75d9064f0d3f1595c95e5257050112e7d61d829f5b +size 9982 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nlf new file mode 100644 index 0000000000..dff67004e3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790be7026f30fa05c4d5ad1a94f97f4127969f3bee25d332918f0b250cae7fed +size 5074 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nsh new file mode 100644 index 0000000000..400e1b2d88 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Norwegian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612f66775832dfa570920a0953e24a1b23f8e0f4fda94e0e276a60e2f9896b5c +size 7998 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nlf new file mode 100644 index 0000000000..5a97bebc6c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f995b7184a01fa2303a64c0be2c401c104e7e3c13237126638023cd7f977a65 +size 5025 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nsh new file mode 100644 index 0000000000..64dbd7896d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/NorwegianNynorsk.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5cbb8ae697455bffe60b8839fb512492b9fa510447994d41c129998f256c1c +size 7784 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nlf new file mode 100644 index 0000000000..ad5cd7425c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9952974c7a3aabae3dc1e2b553deb97cc7695e5060c1fa60cc16c211c5be8cb8 +size 6448 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nsh new file mode 100644 index 0000000000..28bd01dc8f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Pashto.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a8ce937913f955acb38a1d1112e857c48e639c67f1aa26d9bcf052ca5b48d1 +size 8653 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nlf new file mode 100644 index 0000000000..48e63985d2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06bc02413e4bdd73b5169b35aa668459cf52d028aeca5f7adcb03b777fc3608f +size 5607 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nsh new file mode 100644 index 0000000000..af3a1b1c46 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Polish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b7323b711c7803aa23c3905e4c1e67f6e614281b05cc30193d7967edf92e2d +size 8471 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nlf new file mode 100644 index 0000000000..4e4892e380 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14325f19d8fdead0cc2831f5008acb8734ce4325fb5e09e5f260e47766c9ac98 +size 5426 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nsh new file mode 100644 index 0000000000..d2bf3a3323 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Portuguese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96cd5c396be51c5e8f56d0fede95c6cd27b629c563965d4cfc3b8fb09914577 +size 8134 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nlf new file mode 100644 index 0000000000..7302a4b3e4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3cde87d4c0d6410685670e4ecd511f39720be5b90843efe2f02a4060ac2a9ea +size 5553 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nsh new file mode 100644 index 0000000000..ef0192b33a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/PortugueseBR.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0cc9509153d34799dff8a592fbafac82c3804df2e4e8e0f01051a040d1adbb +size 8229 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nlf new file mode 100644 index 0000000000..3cdbc05fe2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679348a978000fcd237c160dc6cc7fddac9eaca9c3ddb1fd29dbe796538c0db1 +size 6242 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nsh new file mode 100644 index 0000000000..72aa78b780 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Romanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c226854853748771763b88c8eb2326dc9d27d2333c56dda3557f67d5aa83ed54 +size 8209 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nlf new file mode 100644 index 0000000000..4ed7b345bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0c8234cc4dbb91b09bca8cffe3add86c9c44dd0b5a82ca8c9045fe1fdfb37e +size 7684 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nsh new file mode 100644 index 0000000000..dcccab6a32 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Russian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e620ac3e937392ae3732ac5c8c04c35d0ab870afc43f0af0acec634394aed2 +size 10516 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nlf new file mode 100644 index 0000000000..c873f3d2c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6266a612b8eb4205666abefe566d11707b02129bd90dcab39f2f969cda0c5ab0 +size 6038 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nsh new file mode 100644 index 0000000000..3497bc5e34 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/ScotsGaelic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd6f8aaf54504161377caf1ff638e87fa18206558e6506fb8a512acf6c9b124 +size 8527 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nlf new file mode 100644 index 0000000000..f55dea2435 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b62a3cd1b8e7030545a050817200a5022f01cb423abe4c05e2ea859a9d1f20 +size 8193 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nsh new file mode 100644 index 0000000000..a30274b716 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Serbian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61173c38b65c1a49ae828b9b4a060190639152be40a69eac5399c6dcaf9c1179 +size 10384 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nlf new file mode 100644 index 0000000000..f21566d6c9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cc8d4530216a771d348d53398953b9cc87c6f4450359b0e60fae981da864ef +size 5555 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nsh new file mode 100644 index 0000000000..d81dfebd79 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SerbianLatin.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ba319222d10d8ca120e19908f2cf1e3c72d1006da7b5f12d52bd4489e42842 +size 7695 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nlf new file mode 100644 index 0000000000..ed711ca60e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d03518f6b472fa46d7b3719ded4eff0f1a458893feb0d0b7da2a29d65027657 +size 5050 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nsh new file mode 100644 index 0000000000..0003a39e2e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SimpChinese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259e3b0462c02c6865ea6d7edabbefeb78cd37c3f012ed11986d959ae41721e8 +size 7683 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nlf new file mode 100644 index 0000000000..362a725541 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800f5af00499c92fdedd42c5f3d2236d362b7a4f8aca028efe539d35365a56a2 +size 6488 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nsh new file mode 100644 index 0000000000..c47a933965 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovak.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7781395df08c1250469149919f6f155b678bb9651ada06361576ea485124374 +size 8906 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nlf new file mode 100644 index 0000000000..0285b09f78 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1947583a4e281b05d40da2f4a5d15fc461d0878747c6059836bd9a4df986b5 +size 5171 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nsh new file mode 100644 index 0000000000..0719477f06 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Slovenian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fef7ff829bba29e847c2e00d76525e637b5fa1d0233b1ee42580affacdbb6d4 +size 8091 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nlf new file mode 100644 index 0000000000..36e17511df --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a21d34f8fd911a69c2a4a8da27f501f6da902e9f4ec609871b22fcd0deb97d +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nsh new file mode 100644 index 0000000000..efb9d340ba --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Spanish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b2ea59240218fafb5a803122fead674833db294812b8372014d1fe7b368f6b +size 8213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nlf new file mode 100644 index 0000000000..c007b7ee7b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26eafd82568c0ee329a1f4eb291f423a81cf82dad04df6ffad5221ca95371c76 +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nsh new file mode 100644 index 0000000000..74ad82dad7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/SpanishInternational.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4df06d5a7d0fdfb3409ae4053b6e8ea2ca2e8747e57e823b9e61c9af6a4d18 +size 8326 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nlf new file mode 100644 index 0000000000..4d81b590bd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994679c93a66a6ab2a90905940a64e4e007336c52c15ca96a1d12d6021c0c47e +size 5345 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nsh new file mode 100644 index 0000000000..dca869c5e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Swedish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66237ee035e4badfb5fd23f7df30c5ce79505ee18e42a740b48f0087da50181e +size 8094 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nlf new file mode 100644 index 0000000000..aabf812d42 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac87cf1ac8eb8707751fa802a451c9ea1d6668a28eb83310788ff0eef2dae21 +size 7682 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nsh new file mode 100644 index 0000000000..0f1f3bc513 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Tatar.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe009ab5e6322b9a53b35cc079b4f5631a094938bba1c1f9bfd5545fb7248310 +size 10312 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nlf new file mode 100644 index 0000000000..d15b8d2c38 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13695dd61cbdebe4a4025bed9fd01607ca6848a40beae837a8844adaf319b5d +size 9985 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nsh new file mode 100644 index 0000000000..90181044e2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Thai.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1060b1f29d4f5bfcd5bcbab4037d9b7f243c7debc7e17da475e90cd7ba0a8471 +size 12742 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nlf new file mode 100644 index 0000000000..4f2d541a49 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92595266f734e272dffc5aa1abaa19ce94efe35c755329f4d9473266f39bf13 +size 5076 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nsh new file mode 100644 index 0000000000..17ddc0863b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/TradChinese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cecd1cda6e6471fdeb1645979b4e47b30e1df9c79e93f9c35fef47b9eeef28c +size 7650 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nlf new file mode 100644 index 0000000000..ac254c1759 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1774d493a5ffa87c0e8bbe2e95521ecefca4bf2017450bc3c51865111d2eac98 +size 5743 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nsh new file mode 100644 index 0000000000..9431248fd3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Turkish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1606bb7c35fd93dcdfcefedd1a7014644f27c7701926476589f85b9f8fdf3d18 +size 8073 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nlf new file mode 100644 index 0000000000..8dfded5d32 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ceb67eb19cfb40a790dca0bd9e7aab56a299839a65245d6e7c63d53df5a3a45 +size 8073 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nsh new file mode 100644 index 0000000000..1748a7e743 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Ukrainian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c2920d5c5ed9591b0ae28084150c8b613fb621685d6d0a36202c35077593cd +size 10191 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nlf new file mode 100644 index 0000000000..6d1f651801 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b94d7d4f46a89be068e9fa41b288be5f170dd70450a042aaba0c087c40d0e6 +size 5495 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nsh new file mode 100644 index 0000000000..f8b45457a1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Uzbek.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e9d03d0a4be3acecab7a451bd45dab8157b7cf99b66b3c6f394773e5d7d8a3 +size 7604 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nlf new file mode 100644 index 0000000000..7ae5360541 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef1a249a8b4dd3ed3f37606932a43bd0d424f602c50f9270ec146b5ca25b6e8 +size 6611 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nsh new file mode 100644 index 0000000000..3346667eb6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Vietnamese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee08c85d2e6aba54c4399bd673d62b7cf38595c044b8afc9efdd8d6cb242686 +size 9243 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nlf new file mode 100644 index 0000000000..90b915c2d9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4aa0d517d4b0cfde3ae4aedd27d390d1eb6489bd50cffb96b07de2639cdf594 +size 4737 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nsh new file mode 100644 index 0000000000..329c3006e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Language files/Welsh.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99842d64d010c83bece4435b2ff59e5e3c9e8e0e78b547d9952722b389287b66 +size 7012 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Deprecated.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Deprecated.nsh new file mode 100644 index 0000000000..9cf328aeec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Deprecated.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42a6cca1d7b9396415e834b8547c5ec873184f4c100c650f67754f5842e37c5 +size 1891 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Interface.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Interface.nsh new file mode 100644 index 0000000000..a965729f02 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Interface.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2aaff78ef29edbae4c7f15adda5bebbfdfbb67c39de953939f78a98d97af54 +size 10295 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Localization.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Localization.nsh new file mode 100644 index 0000000000..aed92f81af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Localization.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608bbc728d486fa9267fbf4be3e8961d6cc752ff6b89d990dbd8afb515712b35 +size 4821 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/MUI2.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/MUI2.nsh new file mode 100644 index 0000000000..a2b3dbdcee --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/MUI2.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3075ee0418ec52adaace597426eeda384715d6e4b7b99105df16f1158830ea +size 2354 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages.nsh new file mode 100644 index 0000000000..be7024321d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb67424fe2dec1a8e8870c5329d56572e7b396b3ec76192ca288e39695e1896 +size 9392 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Components.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Components.nsh new file mode 100644 index 0000000000..2f249995a7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Components.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f553cd4088aa6af9f258dbc4835e5d3ae1d6b6848c5396d83841532c2bca08 +size 6998 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Directory.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Directory.nsh new file mode 100644 index 0000000000..9288718dce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Directory.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e52d5328c53252837e577bcb2d4d0578e44e55672c742f7ce3795a4f697aa28 +size 3598 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Finish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Finish.nsh new file mode 100644 index 0000000000..c3df02464d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Finish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700255fec4c1e9ed3e3e05672bbcbe6f4de48e21e4cd85be6f34771725725a91 +size 18056 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh new file mode 100644 index 0000000000..28b996964b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261926dd6761321599820403603401dc54cdf77fc54967edb2d0af4f842feeb1 +size 4973 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/License.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/License.nsh new file mode 100644 index 0000000000..eef95185e0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/License.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0e23d50459dd45efe7e03fad862abd76deae8bc007148d24be7f5b5e2ecc7c +size 4477 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh new file mode 100644 index 0000000000..d791223fdb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:454f9027e5ebdfbe5d27cb6e2352071f7ebdb671d1810bf466f222824e680a1f +size 8196 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh new file mode 100644 index 0000000000..0e44b110eb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a18ac6086fe8519800e3743746a918c00522228accb3b547e281c170e58e46 +size 2372 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh new file mode 100644 index 0000000000..130c130e94 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bcc9899e10eece70623feaf26ef6bc2181b8a0fdb6781f6cd6087313d7e65d +size 5367 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/System.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/System.nsh new file mode 100644 index 0000000000..2861f0e3bf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/System.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82197008c4d94361e96bfa0018b08a11288e607f6076f6d9e7578e85c245e39b +size 69141 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/ioSpecial.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/ioSpecial.ini new file mode 100644 index 0000000000..662cb70202 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/Modern UI/ioSpecial.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95aed234f932a1c48a2b1b0d98c60ca31f962310c03158e2884ab4ddd3ea1e0 +size 211 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/default.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/default.exe new file mode 100644 index 0000000000..9f82817326 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/default.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c2d8ea96f0384d99035d27fa41eb8eede006c9b225e04861f53ac85d991c94 +size 6144 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern.exe new file mode 100644 index 0000000000..ec3cd09059 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c763821a0e4e8ca76a4531dbe50dc88cbc7e5238a5b76a0646722b2524ee3c +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmp.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmp.exe new file mode 100644 index 0000000000..2fe25ed0f4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmp.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e0219c836fa09339baa099252ce67d7f8371678a922d4d25c02aad6651bb5e +size 4608 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmpr.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmpr.exe new file mode 100644 index 0000000000..1f9a9941c7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_headerbmpr.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889067a7349aef40da2f683a3c04348cee185fc6924c54104a0ec7cd085011f8 +size 4608 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_nodesc.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_nodesc.exe new file mode 100644 index 0000000000..38e79b8700 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_nodesc.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3567dbc24d4e7eed7b343407db7780592653adc1080882291fe360666fc8192 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_smalldesc.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_smalldesc.exe new file mode 100644 index 0000000000..86c7a44bb3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/modern_smalldesc.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768ce0ec84741170c595d826f6035a66728fd63b8d7822bbc76f42be5e4461c1 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/sdbarker_tiny.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/sdbarker_tiny.exe new file mode 100644 index 0000000000..55edac3f23 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/UIs/sdbarker_tiny.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a7c2f82de91cc677bdaec3f987396a46e23e1f442429462487f245a339c9ca +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Base.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Base.nsh new file mode 100644 index 0000000000..68a08d59c6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Base.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dd30f1a17094bb13b50a8dac228538f197a45646edc889998b9cf3bfe0778f +size 1747 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Classic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Classic.nsh new file mode 100644 index 0000000000..3d95aca686 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Classic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b704c2b7076894c01cd10f70b17b7b0cf83c5770fcb52651555be03a53153add +size 118 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Modern.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Modern.nsh new file mode 100644 index 0000000000..e02abfeb2e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Contrib/zip2exe/Modern.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95281e020a50f4e6e35c7e0933ce74a61e7b012efd546d2ce91b4338435aa75 +size 213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/AdvSplash/advsplash.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/AdvSplash/advsplash.txt new file mode 100644 index 0000000000..2945262713 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/AdvSplash/advsplash.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c751b3e2dc24f57de57ad3e69d5a4de9ae023fe4baa10fd2adef40abb7b26691 +size 2019 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Banner/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Banner/Readme.txt new file mode 100644 index 0000000000..22f8e6a1ec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Banner/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af71b9e45165775685edab6a6041582b30a0b82d2aa0ab0533026c0ed49a30a +size 1215 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/BgImage/BgImage.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/BgImage/BgImage.txt new file mode 100644 index 0000000000..23214dc97d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/BgImage/BgImage.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97d5c8f019f6de7f07457847f98c43323c5801da6896140ffe73762fe21f2fe +size 3133 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Dialer/Dialer.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Dialer/Dialer.txt new file mode 100644 index 0000000000..74e8ff2531 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Dialer/Dialer.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1574bf72d2e98c6fdc969c195a1c11e081f538da402270ea23d07b8c2f0fdf39 +size 2993 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Changelog.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Changelog.txt new file mode 100644 index 0000000000..f7848193e9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Changelog.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e533b26da9672ce6a94601bc1671d4b181ce1cd20a1665ce6ccf43a55cb630 +size 6314 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Readme.html new file mode 100644 index 0000000000..d657d392c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/InstallOptions/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7f4654fc8ee1df3e7d0629efbd5ff60b6ecd910f93c706beb60780d1551fc4 +size 52108 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Math/Math.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Math/Math.txt new file mode 100644 index 0000000000..2a8c7e508c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Math/Math.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d60019a2737478794352ae30bd6d5184506becc7fb8bb484e1239f7d73bcd23 +size 10258 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/License.txt new file mode 100644 index 0000000000..59cc872921 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5957bd99460eb21148bd2695eeb5a3718abae6b118040a4678926da3f4cfbc0 +size 840 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/Readme.html new file mode 100644 index 0000000000..2008371494 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae900a1812d5affec3555289057f97b170b2e0bb02fe5e79c2c7306ccb7a9f5 +size 78646 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/closed.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/closed.gif new file mode 100644 index 0000000000..48fa500bd6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/closed.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b601482dd9f13043f50fe3e85158a52833f697feb5bd490f76f7b017070d184a +size 203 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/header.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/header.gif new file mode 100644 index 0000000000..c273ab2338 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/header.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab302133999a9443abafe3db3aca16112247b225949a63de800f72738c1b1ff +size 6023 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/open.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/open.gif new file mode 100644 index 0000000000..f487a14798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/open.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf447ca33cd86e0b4424d111eb4337247bcddff5a89205d4a128b1a44bb5c1a +size 138 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen1.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen1.png new file mode 100644 index 0000000000..fa5f363a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b24d171b68922e95d2335bd021812f53e96780c2a7ae576de3783ac3b585b8f +size 15647 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen2.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen2.png new file mode 100644 index 0000000000..f2a9802ec9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI 2/images/screen2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f211103afc4c797665fef17ba35ca87909f8219a9fe8c71eca243ea8a9f1b640 +size 18437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Changelog.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Changelog.txt new file mode 100644 index 0000000000..4c5345463e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Changelog.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714426e60941f08ddebc5269964a8d722ca49f4f1df1b8a0d8c5c4a0443847f4 +size 11738 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/License.txt new file mode 100644 index 0000000000..449fc8efec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75416e94e65b7584ee76e66f7f2f0b087ad8bc1371d3da4486091923076d36b3 +size 840 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Readme.html new file mode 100644 index 0000000000..2050333759 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8d1371a7d22e8973641848a9006823ce5de43d51780f9fbd434596d8852763 +size 81810 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/closed.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/closed.gif new file mode 100644 index 0000000000..48fa500bd6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/closed.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b601482dd9f13043f50fe3e85158a52833f697feb5bd490f76f7b017070d184a +size 203 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/header.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/header.gif new file mode 100644 index 0000000000..c273ab2338 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/header.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab302133999a9443abafe3db3aca16112247b225949a63de800f72738c1b1ff +size 6023 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/open.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/open.gif new file mode 100644 index 0000000000..f487a14798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/open.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf447ca33cd86e0b4424d111eb4337247bcddff5a89205d4a128b1a44bb5c1a +size 138 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen1.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen1.png new file mode 100644 index 0000000000..fa5f363a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b24d171b68922e95d2335bd021812f53e96780c2a7ae576de3783ac3b585b8f +size 15647 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen2.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen2.png new file mode 100644 index 0000000000..f2a9802ec9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Modern UI/images/screen2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f211103afc4c797665fef17ba35ca87909f8219a9fe8c71eca243ea8a9f1b640 +size 18437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/MultiUser/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/MultiUser/Readme.html new file mode 100644 index 0000000000..404e103f5c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/MultiUser/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb450724804a7db34a0ed6fb6e7e5584922b2cdfe50c72272f9826c075a67202 +size 16615 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/License.txt new file mode 100644 index 0000000000..f29625313f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326e587f36ca58e14bd09cca153f9e69f1c5ed701189aa47d2d0627af7e16280 +size 943 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/ReadMe.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/ReadMe.txt new file mode 100644 index 0000000000..6e708d1f19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/NSISdl/ReadMe.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876948b4fbdcc1f7c3cc7462fee15f5d080fc13cdc4435d5f2e38c0391297dac +size 2969 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Splash/splash.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Splash/splash.txt new file mode 100644 index 0000000000..96156d13b5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/Splash/splash.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfade0694950c5cc018cafd4a74c1ebce6f0750ea30f65c60afccd082f42e3fe +size 1235 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StartMenu/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StartMenu/Readme.txt new file mode 100644 index 0000000000..3936268788 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StartMenu/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb3175c027fd97a903cfcc1a3d952b658385b794d22097c5c9becc071a1fb01 +size 2264 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StrFunc/StrFunc.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StrFunc/StrFunc.txt new file mode 100644 index 0000000000..2941354fa6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/StrFunc/StrFunc.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da2f62a3d1924ed1489812c13b30b32bf68198b35112542c0339cc79aa42a74 +size 24311 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/System.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/System.html new file mode 100644 index 0000000000..0f7dde47cf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/System.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266ea005292cea22d664298d52756279efb0b37433ee5e4b74130c0b56e1210a +size 31131 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/WhatsNew.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/WhatsNew.txt new file mode 100644 index 0000000000..e014c19f52 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/System/WhatsNew.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7233c266e1c6c58040cf01692f5759a2625d924f05e0cf0de9d934d40e9750 +size 2205 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/VPatch/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/VPatch/Readme.html new file mode 100644 index 0000000000..924f18fadb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/VPatch/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6620653202d756efcc6d687aea61df8924d94dfb5ff64a010599772f39731049 +size 14024 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/License.txt new file mode 100644 index 0000000000..65fb33fd11 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab8e53598d27d3d06eda02ac0b42d462e9ff6f81ca406273004ebf53cd9ad42 +size 910 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/Readme.txt new file mode 100644 index 0000000000..a1163ffc47 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/makensisw/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fad664d6c78a195ff1ce14951b1c96821e6e5ff861b2ef2f8aa7a22a630738a +size 7396 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsDialogs/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsDialogs/Readme.html new file mode 100644 index 0000000000..f39713efc6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsDialogs/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31c6a356b6d265d805546bea5800921d6ba94d685830ee586cb998f6c3d7e0b +size 39832 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsExec/nsExec.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsExec/nsExec.txt new file mode 100644 index 0000000000..fafc5571b2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Docs/nsExec/nsExec.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73131e6349536576bfa8732a636c803443ccea75f4e1df90e3f3ace12384965c +size 1632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AdvSplash/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AdvSplash/Example.nsi new file mode 100644 index 0000000000..01feba3709 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AdvSplash/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4aecdfef9011eb3b0196251bdd539db26212ef215201428b30c97bd6b32cbe +size 1171 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AppGen.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AppGen.nsi new file mode 100644 index 0000000000..f2d54a01ec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/AppGen.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88d6ec34fe49fcf9a256967938e367185eab6e488a2a67d9ad1e19ee3ff433e +size 2047 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Banner/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Banner/Example.nsi new file mode 100644 index 0000000000..b4f8ff9782 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Banner/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627d108fb160ea295756d64f8887b7b266a5bf4e2a03409ec991dcee90c32554 +size 698 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/BgImage/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/BgImage/Example.nsi new file mode 100644 index 0000000000..f6ce9ed940 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/BgImage/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7735746246b21f9a04aa837a2f6a34dcaaa15a58075177ac166126cada0a5422 +size 2846 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.ini new file mode 100644 index 0000000000..61b8de0baf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce2422db8fc0ff38f011295ae051979833f6b7bcec162b8b780f655639d5100 +size 1534 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.nsi new file mode 100644 index 0000000000..b32dddaa9a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72daf671991e183c7e680eadaac02b17f3137a3b7ac8d79ef3c3f5af72a3faf8 +size 19385 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFuncTest.nsi new file mode 100644 index 0000000000..0b5359bb37 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/FileFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b41d7af9396528442c33e8b1df58f1ae975cccda8f85901a7c123522b9bbd +size 14283 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.ini new file mode 100644 index 0000000000..c29d62ab2a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b39cceab58d2839cf02e5d1406fe16f5e42806ef34d725036e0711cd3a82dd +size 1013 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.nsi new file mode 100644 index 0000000000..11a46c9a19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/test.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9fecf3bfc499609bef8120141e0f707b76c86c8bdce911951a7a4f4915cc1f +size 2181 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.ini new file mode 100644 index 0000000000..c7fc046642 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18c78c47726f2448cf11f649296acd0c50f952f271a4c49913413d3c39927fe +size 1936 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.nsi new file mode 100644 index 0000000000..70591ddb5f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testimgs.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac12888c1e89577871b85ec793ccf5661a861140fb0a247f07e01c95b38d7e40 +size 1972 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.ini new file mode 100644 index 0000000000..e90f5de844 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33608273d1bcd2724d541e5723ebc60a7a50c441457b09711e7658962d73352 +size 614 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.nsi new file mode 100644 index 0000000000..65584c4b8f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testlink.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a2101691ba5485a781a3263d8d140e444416732a63569a881c5ea3d325d624 +size 1282 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.ini new file mode 100644 index 0000000000..b038532405 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfe6fd9bb84b94ebc569187389629f056188d8fb2e1365d680a67f19338af5 +size 1395 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.nsi new file mode 100644 index 0000000000..8eea239b16 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/InstallOptions/testnotify.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32cd8b3eb132e5bfdfd525b21c6a128983a25b82c9bd2d0d6395c8ae022872c +size 4378 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Library.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Library.nsi new file mode 100644 index 0000000000..810158354c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Library.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fc61892a4776133620fd142a3ec033513c90309963180bf2935be21cb682fd +size 8366 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/LogicLib.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/LogicLib.nsi new file mode 100644 index 0000000000..b714ce7465 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/LogicLib.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bc3c46c5244215c39eaa08ad9734ef5c8d1ceddac813917b0130e0c12568c9 +size 12509 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/math.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/math.nsi new file mode 100644 index 0000000000..4746cb2112 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/math.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b54bce4800e9af91a92922f163fccbf1db533a24e8452eb23af6873de0beba +size 1213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.ini new file mode 100644 index 0000000000..00411ea847 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23584377db41787602314da35462d1fb80186f317b82f7bfda1d3dc98efd0513 +size 1122 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.nsi new file mode 100644 index 0000000000..b82f52029d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfea46c5646e1a20d6d9ab634582e361cdf5b4c893cd40d12a7be66fcb9fbf6 +size 5701 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.txt new file mode 100644 index 0000000000..ca5e7b1527 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Math/mathtest.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849cf3e8b23de0847414615525ad13d14adc2518e7e467e6ed4673b1f477fc6b +size 482 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Memento.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Memento.nsi new file mode 100644 index 0000000000..1e7c71087f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Memento.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4f3e9c0b902b25556116a0ecdfdbd9e1f9771e68cd160af689f67faca6147d +size 1532 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/Basic.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/Basic.nsi new file mode 100644 index 0000000000..db4323aa56 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/Basic.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820f9e421a39da01c2a9b55fb699fd4a66ea1606cf0931a38b7ba802905a5bdb +size 1969 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/HeaderBitmap.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/HeaderBitmap.nsi new file mode 100644 index 0000000000..a9d748f33f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/HeaderBitmap.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e68d4b1164c3b31ecdbbc66de3c7d0a3019c95e6ba6e9b72ddbb3cd3be4c98 +size 2108 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/MultiLanguage.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/MultiLanguage.nsi new file mode 100644 index 0000000000..99f29db83b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/MultiLanguage.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804f7b067693ef5108fc40bb41f0056f3a2ec44325351cf1ddc223351fa900c8 +size 5995 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/StartMenu.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/StartMenu.nsi new file mode 100644 index 0000000000..07755ec25f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/StartMenu.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a5a0f9ecbbe824811e25a81994e5269bf711314dfa31b3e4f832917afa69ea +size 2822 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/WelcomeFinish.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/WelcomeFinish.nsi new file mode 100644 index 0000000000..3692f40909 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Modern UI/WelcomeFinish.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798f7f66639a86d979b0edc2ec721a6c071c4a157783d0d2a9da61cc5faee84e +size 2114 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/MultiUser.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/MultiUser.nsi new file mode 100644 index 0000000000..f62c3649cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/MultiUser.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408b0e03eeee867c412c3b535c56f7e34051402c028888d0105b3e69c87bc824 +size 1886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/NSISMenu.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/NSISMenu.nsi new file mode 100644 index 0000000000..9b48ede6bc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/NSISMenu.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43fbd429ffbe1c639b868a754cc994d176d7a364ea0b3f948e50d7a6c39ad32 +size 13017 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.sln b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.sln new file mode 100644 index 0000000000..7d2f7592c0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.sln @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dd7dd4a7dfbde0b4eb5f2e4887c339608ae1375a70aace975ef025ef6fcc34 +size 882 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.vcproj b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.vcproj new file mode 100644 index 0000000000..8fa99f8569 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll-vs2008.vcproj @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7a8ce6702baaff3019d4bd01d6e250dc8aaeabd626f14970eb640e1847291c +size 6303 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.c b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.c new file mode 100644 index 0000000000..135e0162b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.c @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11228585743a3dc4e36b6e5273f82fb55dd5ca8d0ba3d6a4c39df7e53e9e0fbe +size 1285 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dpr b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dpr new file mode 100644 index 0000000000..5c8f5d0202 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dpr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfad5f65b6b77a1156cd3c4817f6ccf3e515d010f542abc46d20c5d22a2fc91 +size 2777 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsp new file mode 100644 index 0000000000..1b68a8cba3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8828cfceaa1b7f8b4818e60dce47d16eae95958c624ae38d60b04acab36b86e8 +size 4346 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsw b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsw new file mode 100644 index 0000000000..663008d47b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll.dsw @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b5bcf7b5ba6263d9402ada17ddaadb2034b606b47365f0acf9911e7287a236 +size 533 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll_with_unit.dpr b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll_with_unit.dpr new file mode 100644 index 0000000000..a14056d149 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/exdll_with_unit.dpr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396b4b2a6846e6c4037f42fedd47a2be41817e82307e583ff5e5c972b063a4e9 +size 2280 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/extdll.inc b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/extdll.inc new file mode 100644 index 0000000000..06c243a716 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/extdll.inc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4832a6c0b1462991a7498b03b7f82ee694ccac30788ad36eeab0e95d3009520b +size 2951 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis.pas b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis.pas new file mode 100644 index 0000000000..658434804f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis.pas @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6065cd68b5f969fd35b7c517bb1e7af05b1b8c0073bbdb9ed964c44bc612af7a +size 6471 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/api.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/api.h new file mode 100644 index 0000000000..2278f4fdec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/api.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054ac31308972afeabd79bb43fb927c7274da98c0f493c90a5267052466a4351 +size 3330 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/nsis_tchar.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/nsis_tchar.h new file mode 100644 index 0000000000..3f0f018478 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/nsis_tchar.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e767ab4f87109466fb4d53ee7224d5ffc71beffe6da6970fc5281694ad47509e +size 5054 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib new file mode 100644 index 0000000000..8e6041da2f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9095b3b1ce33bcf7237330f179c6fd480a12266de89cffdf22abd580f7dddd78 +size 7004 diff --git "a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" new file mode 100644 index 0000000000..ebfc029ba1 --- /dev/null +++ "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287734d1d1dd507939e833c6e133c3f658cee651a92b8269f0b9cc6e78c6460a +size 5902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib new file mode 100644 index 0000000000..82aee1cfd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc37fca4695d3b0b18b48e6474f31c76556c1a156affa43c9d92de0716aab032 +size 7012 diff --git "a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" new file mode 100644 index 0000000000..3bf461cbbd --- /dev/null +++ "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1377c838d96edbfe713ed1fef620abac652fd4174bf45ec063dd0668bbbf53a2 +size 5881 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi.h new file mode 100644 index 0000000000..c9022a4c68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Plugin/nsis/pluginapi.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3e26aca38de6a9b3715266b1fdf27edb263cd4b6f0a27d0c44a014cb9e12f0 +size 3148 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Splash/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Splash/Example.nsi new file mode 100644 index 0000000000..18d1651240 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/Splash/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30426a804e51d8d46534a6e039aa9cf3bac1a8397d36ad9242185769c4c27b3b +size 553 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StartMenu/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StartMenu/Example.nsi new file mode 100644 index 0000000000..28e75c66ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StartMenu/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34937da391f11957b173c0f59b654e38c38a6c09b0636f0abeafe8eeff1b4700 +size 1231 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StrFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StrFunc.nsi new file mode 100644 index 0000000000..f07ed2240d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/StrFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed9b8ae2c547c42b67bcd6c6304d97a2f332f3c02d715a46a8dc81657e4a5c0 +size 21602 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/Resource.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/Resource.dll new file mode 100644 index 0000000000..70bf509e9b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/Resource.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bae87ff9e13874b63bd34ed3fc9cbe10499a40e7311f182f4c0a06f861eb75c +size 31744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/SysFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/SysFunc.nsh new file mode 100644 index 0000000000..12a60d031c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/SysFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d510af9c9630aee76f3b5043797665bb66539a7aff6c66b69452b8158610670b +size 10453 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsh new file mode 100644 index 0000000000..372ddc63a4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b288f0d751a2b8270ce22c1f049f313c0f6606b65f990fcff6b0ad1c980dacb6 +size 14575 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsi new file mode 100644 index 0000000000..fbc7f09b4b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/System/System.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14a51d6a39f394ce7550e26dbe1b503eabe86e6d05b06f7ab1bcb81586b4490 +size 5432 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.ini new file mode 100644 index 0000000000..993bd6b6ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a950b9cacd0e3f0ce3c2441016603aa9e0bda1363f560b7277d35334f84d8b +size 2007 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.nsi new file mode 100644 index 0000000000..51ca37b3ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa53281ed42046597a4238077a0afbfe1d76415b0e829fc31647860d6ee9c83d +size 24227 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFuncTest.nsi new file mode 100644 index 0000000000..8b494c2df4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/TextFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35ad5bb83a21768b825cd177bbc511a355f9cd73f3f24945c9156facc3e2c3e +size 9078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/UserInfo/UserInfo.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/UserInfo/UserInfo.nsi new file mode 100644 index 0000000000..bf6ce13dbd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/UserInfo/UserInfo.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba08fb3a9a3227c9f621395dca634f8e4b8ea89cc7509e18920ba7b9b5d73c44 +size 1417 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/example.nsi new file mode 100644 index 0000000000..88ae2f6152 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565557889a1cfdb0508e3f7708cb18a480d290d8e01bf70e16792982ee2d7391 +size 1670 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/newfile.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/newfile.txt new file mode 100644 index 0000000000..ae77dbabd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/newfile.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdea8d771a4bb6ff89a41efc6c8377e603cc60a9135673e08c493b905034df61 +size 125 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/oldfile.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/oldfile.txt new file mode 100644 index 0000000000..7c21f84f5a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/oldfile.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b9718141accafaf1deeb5bbe4257a72c748bd29e3d8b02081d6d6842c0910f +size 125 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/patch.pat b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/patch.pat new file mode 100644 index 0000000000..8f6cbe772f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VPatch/patch.pat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fcf403adb523c74714cb11a21575b06164ec4e90f312a57bcd1ed290c40f66 +size 99 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VersionInfo.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VersionInfo.nsi new file mode 100644 index 0000000000..b5d0c03f10 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/VersionInfo.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78af7c50574292dc0f24c06772f2ab356447ec1bc6045e81370e5b1615cb9da2 +size 1029 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.ini new file mode 100644 index 0000000000..9e98dc27d1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8d04f580b87a892c49f41c84e440acda74ac2a0158fcc5cadf9a63c98f7f61 +size 1796 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.nsi new file mode 100644 index 0000000000..1d2bd6d9bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21641e528b9005314560c082e12430560409c492344f6330370d087a7175ebb7 +size 16437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFuncTest.nsi new file mode 100644 index 0000000000..ea6ba44c97 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/WordFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50cf54527d67a31d24964e7cc296c3d8ba773e093054100df5725d755f26cda +size 16440 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/bigtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/bigtest.nsi new file mode 100644 index 0000000000..1377811818 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/bigtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ef04e125e4e4a89be60d0d87a9ee6608fe1c3ef0e3e25ca606dd1cbb97fc8b +size 8632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example1.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example1.nsi new file mode 100644 index 0000000000..815a1ffb29 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example1.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1f521a3c111e272f69409c2491aa700339920a510e6fee2d130561df559851 +size 1018 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example2.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example2.nsi new file mode 100644 index 0000000000..0cdc3bfe62 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/example2.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b4a5881d0967624bf18019f79df319d98c374a8bea6701f0f4d99fc4c6bc78 +size 2776 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/gfx.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/gfx.nsi new file mode 100644 index 0000000000..e14ce68392 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/gfx.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e16b458bb0c10d59daccee0454d75e019f7c9fbb9171710a36492ab6241fa1 +size 3301 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-per-user.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-per-user.nsi new file mode 100644 index 0000000000..007d9e1873 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-per-user.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97daeba0cc66284296fe1de8e0c7880a80d6a39023f0b85984980fd78ba7e8fc +size 8953 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-shared.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-shared.nsi new file mode 100644 index 0000000000..4b095198e1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/install-shared.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5058b22454bc275ca287187e5a6d8e400eff83affd53196457508b11982ab82f +size 2924 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/languages.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/languages.nsi new file mode 100644 index 0000000000..b4750f5cc9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/languages.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cd95e0c62ca2cd500f71416586e6af300af2c62a3eba7684488650edb6150b +size 7366 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/makensis.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/makensis.nsi new file mode 100644 index 0000000000..3b6b29398b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/makensis.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fb8d79d484c418e6d5d731fd1f69df81daa3a1fd519f2077a9d71f4003b8a1 +size 35197 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/InstallOptions.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/InstallOptions.nsi new file mode 100644 index 0000000000..54c1b18b53 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/InstallOptions.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5efccd933e658eda968bd975050ecfc9b10ef591b441c1c5c9dd360f51227c2 +size 1135 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/example.nsi new file mode 100644 index 0000000000..31438b659d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632ba0d16776bc3230eaf006728132da2c1056a8f04ec607d0d489c154844377 +size 7580 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/timer.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/timer.nsi new file mode 100644 index 0000000000..d2f4fe8dc3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/timer.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43dd1ee6199e54c5781c2096945f24a2d5dfd371d12c2cee47fa89de476c420d +size 2035 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/welcome.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/welcome.nsi new file mode 100644 index 0000000000..050a34e0f3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsDialogs/welcome.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b018057b8e442813ff37e3b524fdb0af706965a3a4b12a095589f54d8d5964 +size 5609 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsExec/test.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsExec/test.nsi new file mode 100644 index 0000000000..582c2ca0d0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/nsExec/test.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d1508ac73883fd638f28c64e527bb727e2e20e9a7a69818a75781aa8d8f3d9 +size 812 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/one-section.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/one-section.nsi new file mode 100644 index 0000000000..2307e3a5fa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/one-section.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072e7b809c2c67dfe4451aaeb61ffdb5c3b4ddf90f4199550f004cf9c892cbda +size 1592 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/primes.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/primes.nsi new file mode 100644 index 0000000000..350269c892 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/primes.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71afed4c75bdccdba9a1cfc434663b7c58182e066b899c3e5aa7b36568c7ee8b +size 1656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/rtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/rtest.nsi new file mode 100644 index 0000000000..d4a0622bb1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/rtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f65b0e5938cbeff8c824652711e2ca8b8a8a5d160e5fd6a5659693c7c6384d +size 1325 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/silent.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/silent.nsi new file mode 100644 index 0000000000..8e844551c3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/silent.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f71ce3792e2a8cf69c6666c80e2c0fac4a8f8d61db69a0761af70505412fb6 +size 2217 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/unicode.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/unicode.nsi new file mode 100644 index 0000000000..772d4d52ae --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/unicode.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0d30e730ee4f3efaa388f803c363defdfdcfbcd6635831f54580e5e40496e2 +size 1033 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/waplugin.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/waplugin.nsi new file mode 100644 index 0000000000..e66750f74b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Examples/waplugin.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5536e4f4f773fabcd165cb08655ddcd74bd6238fd3584db8fc9df34f824374 +size 4708 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Colors.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Colors.nsh new file mode 100644 index 0000000000..98380d44ed --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Colors.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fb24714a1f20a70c643e2192372da8ba09dcda5f31a4128bf30d1b20ba89ac +size 1858 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/FileFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/FileFunc.nsh new file mode 100644 index 0000000000..c794cd1dcc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/FileFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476f33722ff773cfec60876c5f270f2aadb9529e9b73730fa8c41e9490f4b0d6 +size 40522 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/InstallOptions.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/InstallOptions.nsh new file mode 100644 index 0000000000..19211535c3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/InstallOptions.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e3d9432d11cded958166035a09ac07df9103fd04134c423fa8ff3ae6f618e2 +size 4820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Integration.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Integration.nsh new file mode 100644 index 0000000000..a3c6cc8fe5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Integration.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f692ae3d178f6f750db3a6a7bc338153d13d3d454eeb410c4e750ef92c1291 +size 1240 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LangFile.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LangFile.nsh new file mode 100644 index 0000000000..86f01ebcfd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LangFile.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea30a5c45464ffb745f0988f4878f703705ed7590407e566b331d4bfba3cfe9 +size 5494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Library.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Library.nsh new file mode 100644 index 0000000000..c138a431c1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Library.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c58a8193f572693ade75cf6ca6c15685b9e63b5a70eac023d24046b3d4941f2 +size 21785 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LogicLib.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LogicLib.nsh new file mode 100644 index 0000000000..7e11292552 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/LogicLib.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea826abeae2c1eb9132c1be02f48d8752c32f47c1d115ce475974364b501a30 +size 34222 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI.nsh new file mode 100644 index 0000000000..6ab709df03 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a897943521449db447c23d98609c4688e15cbfca631bddebda8c3729c7fc87 +size 50 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI2.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI2.nsh new file mode 100644 index 0000000000..68c714a22e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MUI2.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c847d2009b55ff46f8bc1591ffda00f0194fb08ffebc0876cda669b7957b396 +size 50 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Memento.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Memento.nsh new file mode 100644 index 0000000000..867b17d61f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Memento.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ae10e26482d363831ed1d71b75753d06f1e30ee980985c2e65ac1fa2d99a20 +size 12107 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MultiUser.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MultiUser.nsh new file mode 100644 index 0000000000..d5dc326a31 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/MultiUser.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c121141431b2ac961f887ca3fd6fd84b0234a3d82ee178b72fb6b4aadd19229 +size 14996 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Sections.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Sections.nsh new file mode 100644 index 0000000000..27c7d04f07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Sections.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e2454b6314a3260fd2292cd33878f187d64b531e80c1bb8d250e013a901ab4 +size 6672 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/StrFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/StrFunc.nsh new file mode 100644 index 0000000000..4114a6366a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/StrFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11a619df1fd06c72b3dacfe85b8d2ee2337f6010b2193df0da07a49ef8e6c48 +size 45978 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/TextFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/TextFunc.nsh new file mode 100644 index 0000000000..d2aca80498 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/TextFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629c6756a2a668dbfd252e8d7d723dec1c5f059de093cfbb58469281a1a6ed99 +size 24348 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/UpgradeDLL.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/UpgradeDLL.nsh new file mode 100644 index 0000000000..307ce2843f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/UpgradeDLL.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b643f7e195e0b08f87bf4de64bb949b39abf4f32e8432cc2feeb88e709722e1 +size 5132 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Util.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Util.nsh new file mode 100644 index 0000000000..04970d8860 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Util.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a783d11e7e84eb9f825210a7dcc7ef7002991915bce71e0884245c6d235273 +size 5212 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VB6RunTime.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VB6RunTime.nsh new file mode 100644 index 0000000000..417ad344a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VB6RunTime.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2018376937d0a54b7f5e547822c66824fd7d9072204ee2a55a1fcad98cd9198a +size 3464 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VPatchLib.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VPatchLib.nsh new file mode 100644 index 0000000000..39d7e142fc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/VPatchLib.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ce20ab36f9fc6656a6cd95a555001e08808cf32236aa64f19ef66b290af7ff +size 724 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/COM.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/COM.nsh new file mode 100644 index 0000000000..c1f1fc97fa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/COM.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece68ea2e0c50db3a241e133cb278126be9cfe779a6f70afabefd827b354a541 +size 17248 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/Propkey.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/Propkey.nsh new file mode 100644 index 0000000000..a3cc18f4f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/Propkey.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b97960d2f114e39bf3600c08656c235ea762cec3845c821c1d8d8b1a85b33468 +size 8509 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/RestartManager.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/RestartManager.nsh new file mode 100644 index 0000000000..cf55566810 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/RestartManager.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1ca29b7ec6a5a604063792391d9b811d57484b002e6b87d50aaf584ff012cf +size 3578 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinDef.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinDef.nsh new file mode 100644 index 0000000000..e6bfd5134e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinDef.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43dd5f6bac1f9c4fb50755768190a43b38722ecf572ad993866eff1687fa483 +size 1796 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinError.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinError.nsh new file mode 100644 index 0000000000..3291f1d3aa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinError.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea23c45bc01a46a1530047b3db1eff2aa05d3951430a77fb4f6a5f53d000bea9 +size 8238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinNT.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinNT.nsh new file mode 100644 index 0000000000..0cd98c6d70 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinNT.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c579236bf59a41b307ac7499065193a54c9158f24911cbbc9b2c739fd971e6a +size 10383 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinUser.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinUser.nsh new file mode 100644 index 0000000000..43e7606126 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/Win/WinUser.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3eb8c55e7cc7ed496e8ed192bd06900ae9781740a4dbb6e04f97340255abe47 +size 6328 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinCore.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinCore.nsh new file mode 100644 index 0000000000..4bd6b891e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinCore.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75a7245de6b929105e74f5287a34296fb3c7b8aa3c810d15d414fc7a9d64cbc +size 11919 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinMessages.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinMessages.nsh new file mode 100644 index 0000000000..da4a354292 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinMessages.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c154539b1761df7ce9b9df922be266697bbb28234d381dfa611529ccb50aec +size 36757 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinVer.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinVer.nsh new file mode 100644 index 0000000000..a80f6edea9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WinVer.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bae30d74ea3cd1569ae637bfe044fbf8bab3b6bce51b44028a0f2a68ba3b69 +size 24615 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WordFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WordFunc.nsh new file mode 100644 index 0000000000..00ba6a8b62 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/WordFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ef0a9261c212164a3ab54e6d9f49fb5cc962cd377c6fab6bd5f41e62291360 +size 43576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/nsDialogs.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/nsDialogs.nsh new file mode 100644 index 0000000000..4224350309 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/nsDialogs.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d9e29cae063eef051866692699d225e1d33a1919f3d20c39fb4a937de76422 +size 45506 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/x64.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/x64.nsh new file mode 100644 index 0000000000..19db615a3b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Include/x64.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea6ab8bae28e987d4ceac5385b29d781aab5c3a1879f66a4639be1ee7a5d269 +size 3962 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.chm b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.chm new file mode 100644 index 0000000000..51cc944132 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.chm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab384cdc93ff8fab8eb518f39af50d0cf1d5784a31d05e31a6328a72cf435e7 +size 414860 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe new file mode 100644 index 0000000000..467b2902cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098e02127fc99072ca44226039b28b36f02d7e51d94e3e2c9af532b352695832 +size 91346 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/AdvSplash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/AdvSplash.dll new file mode 100644 index 0000000000..4943f166d4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/AdvSplash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab97f2b2da8ad04847ecfd4684cbb0dbdb05c554977a443eb9b4f5fdecd4695 +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Banner.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Banner.dll new file mode 100644 index 0000000000..ea40d9aebd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Banner.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7cea80d648b2f55082778617dbd38694b134f181cd897d98d787be34ec9c56 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/BgImage.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/BgImage.dll new file mode 100644 index 0000000000..90ffd67f28 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/BgImage.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b17d8f988354adecd50d824568029ebd51d88293874ac2178cb49de2d763b7 +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Dialer.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Dialer.dll new file mode 100644 index 0000000000..c840b79a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Dialer.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e99c4b19beee26c7d0a50c6acf12c995d5cfc1a6c81cf28af0bb327b1c8d20 +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/InstallOptions.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/InstallOptions.dll new file mode 100644 index 0000000000..c6834aa6c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/InstallOptions.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3eacff80f6524a2b8573285865c8288b0e2ce9635bf62066de0138346f6a6f3 +size 14848 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/LangDLL.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/LangDLL.dll new file mode 100644 index 0000000000..07e1c9054f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/LangDLL.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b233a4d2c1bd293e2f0a8caac9126e20a8ace1e6ff1a9e271bb2ca86e9bb67 +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Math.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Math.dll new file mode 100644 index 0000000000..d8b241d548 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Math.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a272cdd0e50c32590c4c94e18716d44bba0d1dbaac0f230a214895a7a67f8913 +size 67584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/NSISdl.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/NSISdl.dll new file mode 100644 index 0000000000..552e19874b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/NSISdl.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1e20454714c1fff78f072d057fcca4086178b87acc3198ced624543571845f +size 15360 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Splash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Splash.dll new file mode 100644 index 0000000000..b774741ccf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/Splash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aecc2b4fd72f30e26c15739393e47d0c89bcd7b6e8c2f1397bd60124590e22a +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/StartMenu.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/StartMenu.dll new file mode 100644 index 0000000000..879678019b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/StartMenu.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b2e11b8d772efdd1a7076e8a9869c99ef8507becbed1cf8453f3f6c21e1463 +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/System.dll new file mode 100644 index 0000000000..9a1273a80f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44ca08afb3f6bafd76aa35c259f3d599fe34f6f49ea5118626c1c1a540b0f03 +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/TypeLib.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/TypeLib.dll new file mode 100644 index 0000000000..57bbd6ba19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/TypeLib.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e2921382a1e36df0cbd2bfd58dce50f8a03ba3b4b5e254f46e064d8ae7998b +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/UserInfo.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/UserInfo.dll new file mode 100644 index 0000000000..d4d09d1cd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/UserInfo.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7d0bebea1c3ff1a7a4ea59121bc28c44e52a32fea2086d07d8523b4b77a90c +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/VPatch.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/VPatch.dll new file mode 100644 index 0000000000..6b651eaf1d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/VPatch.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912688edad9b8ffb79c039d4b17720464a88c88639704f235361945e70febbe1 +size 8192 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsDialogs.dll new file mode 100644 index 0000000000..9ea6338ec5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7853be9190489ba84dae8232e9a967cec02d941732cb4137bc9ae6a392e89fb8 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsExec.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsExec.dll new file mode 100644 index 0000000000..57751f12f2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-ansi/nsExec.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20666c498941d36bfd0eae411ad73c475d043cee39b50c31734a70eecaae0bb +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/AdvSplash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/AdvSplash.dll new file mode 100644 index 0000000000..633dbd1ed7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/AdvSplash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8605c3d043ed6ab8a0ae5f825a9dda47f0e37974ccc0a667ac28643cece0ca5 +size 6144 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Banner.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Banner.dll new file mode 100644 index 0000000000..edd03a2315 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Banner.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c9387cb1749bf8338d5a6e6e8f598a22997e4cb9472da8dccc75c44b48f59c +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/BgImage.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/BgImage.dll new file mode 100644 index 0000000000..b04cdbfc17 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/BgImage.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0912ab403831cb402233089c4851f5f5fdc8740207b327899896c2a639b0e9d +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Dialer.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Dialer.dll new file mode 100644 index 0000000000..165cb98da1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Dialer.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98057ce5874835b3b53ebdb213568363fe81261dd6d3f87fb2a8b4e3e9fa08f +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/InstallOptions.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/InstallOptions.dll new file mode 100644 index 0000000000..f12c704a45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/InstallOptions.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b1d70219f88564d94da9fc8a7ca4d25d103575519c84a44df3057b8af98f71 +size 15872 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/LangDLL.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/LangDLL.dll new file mode 100644 index 0000000000..0a0839a298 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/LangDLL.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf25411f28f639f72156c24b0f66ea42f5aee5973f6c137d901da6ae42d5b7e +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Math.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Math.dll new file mode 100644 index 0000000000..4aec49c9c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Math.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3635534e7a6a316b1d1971f6abd3ac610f883317e2691e3b90fbee215ed2a8b +size 69120 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/NSISdl.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/NSISdl.dll new file mode 100644 index 0000000000..49c70977ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/NSISdl.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf40229dd9d6b268902d8dea88c8a04aacf1af218dd29f6dcd35babc54ac08d +size 15360 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Splash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Splash.dll new file mode 100644 index 0000000000..b8f565f641 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/Splash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafe8c18223aa6de236c5d8bc1d5491a3f2f3c8a3504fa341efad875bb1c84e5 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/StartMenu.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/StartMenu.dll new file mode 100644 index 0000000000..00a039003d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/StartMenu.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe330320459637d8dd2b5d84d07925c38ec264152ffd3b1760a4d44d76536caa +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/TypeLib.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/TypeLib.dll new file mode 100644 index 0000000000..c5648f1ca8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/TypeLib.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560d9bbfe0ead171312e58fbb32d5ac8aabea93fc6811be1c6eefe49b21a8452 +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/UserInfo.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/UserInfo.dll new file mode 100644 index 0000000000..197181a2f2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/UserInfo.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dc3112796dbaa37f25ab54b7fac2fbf791cbc6e36a84fc61c6423b84a3677b +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/VPatch.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/VPatch.dll new file mode 100644 index 0000000000..3e12720e71 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/VPatch.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb976e78efe58e8e5190e7bcc0c2c425aec2526f5ae2be5a29fba94f0b7321f +size 8704 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsExec.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsExec.dll new file mode 100644 index 0000000000..99ec5141e8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Plugins/x86-unicode/nsExec.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b121689861b506dbc9c3797b49bc8a90d555cb7db58cb959165cc758391c00bb +size 7168 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-ansi new file mode 100644 index 0000000000..106ccd281e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e411c6ad6c4ef84207af143048c4c5d3d717b807cd3e016b6cbd0580651d0bb +size 37888 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-unicode new file mode 100644 index 0000000000..d3cce8d899 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f858e22d841ac5805a601552aeed24b26c596174d59b593745f4fbdd090420ab +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-ansi new file mode 100644 index 0000000000..0ed87a958b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802681be2acefd2c2a6e810c49201e23de541c80d9b745aab206450d9e8c7178 +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-unicode new file mode 100644 index 0000000000..b15503a1a6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/bzip2_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec69630d3b5faa18a97dd6679c4d1af88ff00786920e36d654ea142fd410147c +size 39424 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-ansi new file mode 100644 index 0000000000..e3e16f4368 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f44b3d3d7780c6cb3a6b8347afc3ab58f46a5a99e7a3120f61a3692c2b8eea2 +size 37376 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-unicode new file mode 100644 index 0000000000..ec9fcb5409 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e916a205c5421f4287411d402fe1d2cb37e3df93db00ff4cfbacec3b8ec8877e +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-ansi new file mode 100644 index 0000000000..8ef7c11eff --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c09439fce137e5f1673daa8d5e475a17e26cbf1502075cf66deb56101f46bc +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-unicode new file mode 100644 index 0000000000..a7aef137ab --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/lzma_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d065b62d34be5f0aaaf7c162e101a5e25d7cd3eb10a13fdb37f91b02ebfce2 +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/uninst b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/uninst new file mode 100644 index 0000000000..b50ef84d75 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/uninst @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba82bb5d90262417a18cec6631bbd8b880020eb159b45f264a9145196dfb8f3a +size 766 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-ansi new file mode 100644 index 0000000000..2c479f5be6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e4a2dc53cf12ed5bf6697f570443d926f2343c0af725a3a6c959b90bc5f63e +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-unicode new file mode 100644 index 0000000000..b90986e73e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01621a30a5676e79494394514861f645cb2c19536edab35275f8012e4246e3b6 +size 39936 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-ansi new file mode 100644 index 0000000000..b730a3620b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb28945f6478dca9c9d4650da66305550ce70a8bb75ff31d34fe644a5ef51540 +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-unicode new file mode 100644 index 0000000000..c0d380f4f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/Stubs/zlib_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c2afdd03c7bc5f1dc24449e5c92f3859f7586f399dff01c175d52e052bc943 +size 40960 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensis.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensis.exe new file mode 100644 index 0000000000..56402b6854 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensis.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f497e92deb9f179f7b8f7553fcb3bd04f511bb2949e5e4a2aee80a10f7b20431 +size 2560 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensisw.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensisw.exe new file mode 100644 index 0000000000..0326d4709e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/makensisw.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c77f0b4615ec5293be7f19f811e7fc907d36ef907658f4cc84f63ca77572f7 +size 1139200 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/nsisconf.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/nsisconf.nsh new file mode 100644 index 0000000000..db95ef2d0b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe.padded_extract/16-1565023.pe_extract/nsisconf.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ac64dc88816b74e8285c0b275c951df45ba6e57d35a1d5f59ad124d0eeda22 +size 1726 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-header.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-header.bmp new file mode 100644 index 0000000000..a407719522 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-header.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3b85a4a7bd2c6baa7b2b24590ea69e656384130fa8212e944016c46ac7e7d1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-wizard.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-wizard.bmp new file mode 100644 index 0000000000..64d4ec293d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/modern-wizard.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411961864a8edb7cc2ba384e702bbb787040ea47488d2cefc2ef2c6f0a55a832 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/$PLUGINSDIR/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/GenPat.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/GenPat.exe new file mode 100644 index 0000000000..6c1a00f7ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/GenPat.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f374a94eeaf073693435b43ca6ea3d5c2f89ebc1db6a205321ae3748eedf684b +size 25088 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/MakeLangId.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/MakeLangId.exe new file mode 100644 index 0000000000..25e3269af5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/MakeLangId.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f7247cf1dbc2d3a014ef57338020f18170930ca13e3ac509607bd3245fec52 +size 24576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/RegTool-x86.bin b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/RegTool-x86.bin new file mode 100644 index 0000000000..15ed343b6b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/RegTool-x86.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7815a8f282e858512477f1de7ffe93b25b028a0c9456e65af00462a8841897e +size 5120 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/makensis.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/makensis.exe new file mode 100644 index 0000000000..8ee2070aa0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/makensis.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42850802704ecb11163f7e0329d35ee54bd288953200d4966e226d572848cfc5 +size 468992 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zip2exe.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zip2exe.exe new file mode 100644 index 0000000000..536505687e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zip2exe.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:407be964e953ca6fe0380f56f1df3d72f7789cb210506ca27cc428cb654ec609 +size 23040 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zlib1.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zlib1.dll new file mode 100644 index 0000000000..b1a5160cfb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Bin/zlib1.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c78eab41b346598736be1196eb949660b710356ad83204f6ef5bf9585c94731e +size 81964 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/COPYING b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/COPYING new file mode 100644 index 0000000000..d32ba2190f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/COPYING @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7dd514003ab96cb3ddccbc028fe5c795fccf57dc41f21cfb9d4dd16ead23bf5 +size 15632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/big.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/big.bmp new file mode 100644 index 0000000000..9866c8ae71 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/big.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c22b2ada7263ec33431ff251f1484c7a554c36f34ec30beb25e34861f9e1dfc9 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic-cross.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic-cross.bmp new file mode 100644 index 0000000000..04b22344bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic-cross.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:438a514508b56db7c188d9826662fe39639f470e877ef2f659edae7139e4e32c +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic.bmp new file mode 100644 index 0000000000..fdbc7ff955 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/classic.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a5e0e33a8c8af0ddc313126a7767632890373444f58a4f20c7fee75eeca65c +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/colorful.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/colorful.bmp new file mode 100644 index 0000000000..c943b4366e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/colorful.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4318c3d4f25b1fcfabe3a1b44d56957da06224f64534944aedd4b7d1c55a8a84 +size 2512 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey-cross.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey-cross.bmp new file mode 100644 index 0000000000..4770ea4f76 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey-cross.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca1c42c656e4f687ed4ee54321d8f23ff4e80242b104388c1d275ad921e0e011 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey.bmp new file mode 100644 index 0000000000..8507b61ab4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d5ffd9b69b50071b44603fa517230456af743b4a8abe117ceeb64104769c2ac +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/modern.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/modern.bmp new file mode 100644 index 0000000000..d42905a6b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/modern.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac685bb79e6fe75e6e54b9fd4e9524d8da6bc8acb269f50c42bf372af671570 +size 1652 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red-round.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red-round.bmp new file mode 100644 index 0000000000..9a213a83f8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red-round.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b74ffb1131596fa3059c3f025e28720b41b4fceb512b7388cd1e19894908fe9 +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red.bmp new file mode 100644 index 0000000000..8eecd3ead0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/red.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e12080d15e31fc428116a72c32245e9c7c3b222cae4e4608a8433f16cc56f7bf +size 886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round.bmp new file mode 100644 index 0000000000..3638ebfec1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e84996353100d025920cd81a0f21b81b3849c20fc4e4a547692d5d0afc6e17a +size 1616 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round2.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round2.bmp new file mode 100644 index 0000000000..7483c6dc5f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple-round2.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfcd7729376479d5df262fedcc7f5a6b3fffc4f8d6b9d5fc2cba304f944f7710 +size 1844 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple.bmp new file mode 100644 index 0000000000..468ca2b45e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Checks/simple.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22aca4a5b82422a009b91a046176df6cd7265050b7c9d4950c71b1b93f4c78f +size 1616 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis-r.bmp new file mode 100644 index 0000000000..e50092b6f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a54f3e88dc3176c97f104546c8aa913172f0bfbb826d0e8aea9abcfdc3979f0 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis.bmp new file mode 100644 index 0000000000..e65c08cc4b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766a893fe962aefd27c574cb05f25cf895d3fc70a00db5a6fa73d573f571aefc +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp new file mode 100644 index 0000000000..a407719522 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f3b85a4a7bd2c6baa7b2b24590ea69e656384130fa8212e944016c46ac7e7d1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding.bmp new file mode 100644 index 0000000000..8e573190a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-branding.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b6dadddb9bd51c4c25283fb726a3115295d872b786df2e73872a41d00e80fea +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp new file mode 100644 index 0000000000..831ef074d3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:533588be2790810fb372797e7355c948c0b13ac544ea34f0e021735ca48e5907 +size 8932 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey.bmp new file mode 100644 index 0000000000..774c138bd7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51016cfd0222dadd7a0ce445c9a87e51bf3593adcd669b0782a86f7c5391d4eb +size 8956 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp new file mode 100644 index 0000000000..eb676b80e7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed4326ae071f3db133a58252786b39c1a76146b9263e03dd7e8566013d5dbba1 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro.bmp new file mode 100644 index 0000000000..1beaedaff8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-metro.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b74ed1397c5a50c22ddd4da1c01cf1a36484fa38623051b4959bb6e01d657547 +size 25820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp new file mode 100644 index 0000000000..217a0e93cf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage-right.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38ff3142812ae83d094add3c1f4ece7ef917aff44a19dbca1882603f0c6200e0 +size 8996 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp new file mode 100644 index 0000000000..0c1777a247 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/nsis3-vintage.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ec748997c1c8ea0e9d3dd660d4acb696bc6cf160c201a48c04d608cff779d3a +size 9008 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-nsis.bmp new file mode 100644 index 0000000000..107c43d9ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552f10c2b0a34eaea274ed8ccbc9d754eeae5826a10a3ef224685bf1d8eac2cf +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp new file mode 100644 index 0000000000..bc8a449ee0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cfebb59f0ba1b9f1e8d7aa6387f223a468eb2ff74a9ed3c3f4bb688c2b6455e +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r.bmp new file mode 100644 index 0000000000..b434ebf6fb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd146e39af28cec251d63da453cb8f04b74904a643f4c3dab52ef2b5bcb4bb3a +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp new file mode 100644 index 0000000000..2cb2690686 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87d1eed1ee12e91bc38a58108139fa8d3a220382069ff8c0eb9261ea52f35326 +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp new file mode 100644 index 0000000000..3a9a472f89 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd6cde334e9a70979efad038bc1ddc62191974e99b662c3f264b2e95e966c052 +size 9740 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp new file mode 100644 index 0000000000..41a6f00288 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall-r.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e3e16598f8fed5a42f4597dac5c1773e7e471797872accff0042affabeb0b4f +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall.bmp new file mode 100644 index 0000000000..1779e045c4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange-uninstall.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9f6b1effac717dcb899f45b99f5755a5b12825a1b61d7d6bf23efffb3ac36e7 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange.bmp new file mode 100644 index 0000000000..274094bb4a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/orange.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9e804ce1a391f8e603b7b9c732a6529c1e81be4d12f125c8562ea9d49095c2 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/win.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/win.bmp new file mode 100644 index 0000000000..a702a07192 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Header/win.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e58b3e6e3896a4bae05fa2f6adc238d391aa80bc51c138f851f373c6c23e518 +size 9744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-install.ico new file mode 100644 index 0000000000..fd19604977 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad8e1efce449a4c6658305f979f2826153fa97d48579259cd09180ba2010b995 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico new file mode 100644 index 0000000000..7894ff0e44 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd58c15fb0848994cb3f1bcc179e53a9db7d962778ee036b560b8fedd07792d8 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-install.ico new file mode 100644 index 0000000000..515f936244 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7446a65155c7d71816bf6321796a3e2c004eb4a2f50717035cd96f7b21b14f1f +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico new file mode 100644 index 0000000000..cc672c5715 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/arrow2-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e725e4c212b71d426cd85cb44741fb0e5fd50406c0cdca447663d3fd4003fceb +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-install.ico new file mode 100644 index 0000000000..d1f3920cde --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2ca9ce7cea0ba7215dd257920790156933f1a50054ea051419c00f37477456 +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-uninstall.ico new file mode 100644 index 0000000000..977a0b35b3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/box-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:797f66b21534d429f052180423fc22b730311a9c97bdf98d632948f9f859c04c +size 4710 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-install.ico new file mode 100644 index 0000000000..21128bbcf6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a09769e39fa641ae88851ed5b64173a8abe0d494dc937a0c78e0255df9d2fed1 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-uninstall.ico new file mode 100644 index 0000000000..35dc08384b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/classic-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9673909834dcedf34932d59a80eb6ae19210afdfa054241959ac226bf504a27 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-blue.ico new file mode 100644 index 0000000000..b13836e711 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87df44f81ac4ff83e4dce0b5d819afa7fa65288f515a5219cf54d7317be8b295 +size 2238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-grey.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-grey.ico new file mode 100644 index 0000000000..2a7fefeeb0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/llama-grey.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f17ec9f401f9e91c88c5cd4d216397d714c05c549340acccd3221abf9c92b0c +size 2238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico new file mode 100644 index 0000000000..2bcb7683af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2bd76e8d1e601f93c667ae6319cf4aeed24ee30508dca7f1b845789033e3ed +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue.ico new file mode 100644 index 0000000000..4427a1324d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:666d7f1da2d3aa65a638be9818e4bb24e9632eabab4d642f7d9dbf8cf3bffc01 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico new file mode 100644 index 0000000000..37f66d1bdd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-colorful.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5681d2ed2efef52faf7fbcecc9da2e07ba6f8eefde7dc89cb33abecccfc1d3f +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-full.ico new file mode 100644 index 0000000000..f18076f79c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a9fc72823ead4f0065b032b81adecda1ed0f1789c23b15e52df531912db1d0 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install.ico new file mode 100644 index 0000000000..20bfacf486 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95c36884a12b4bde8db9a3587f7bdb05e7232a4e9a095202ace4eba693412e05 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico new file mode 100644 index 0000000000..1076a472ea --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff5435163d7d1e79ca1cfda01ba929dcd4dbf29cf69ed60f5448d822f0e26d03 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico new file mode 100644 index 0000000000..b89e404046 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-blue.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a766a15db31e4fec07226cceea64ab411854d751354a35dec2aa305fc8849f3 +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico new file mode 100644 index 0000000000..76ff861487 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-colorful.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb365bd8f0ca0b17d7a94e67b0b6aad3ed7aced6fad233907a492e796ff3c337 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico new file mode 100644 index 0000000000..01c7a5fb07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall-full.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47bd1830e3e05311ad5c4c6abdcb6f7cfe8f13c79a51fc48669729a28ac8a181 +size 23558 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall.ico new file mode 100644 index 0000000000..6631ba4980 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/modern-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5037c877cb134c1cd303367cfcc2afecb0517522ff8ad98544d4eb158ddc6bda +size 13902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis-menu.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis-menu.ico new file mode 100644 index 0000000000..0193f6cef3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis-menu.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e007305cc3e89bb786c212f14bb37a5b5e7f80cb5755ffe9e4eb9110f97c1f8c +size 39119 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-install.ico new file mode 100644 index 0000000000..e270dd4316 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1a02e00f70f5e8a90568a06e9953af6688d7083851f3d14453b4a2030fec73 +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico new file mode 100644 index 0000000000..612bd7b996 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis1-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04fa9188e475bf1698d4a6953c4ad6f4bfc25677d7cf149a605fd91e3f12100c +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico new file mode 100644 index 0000000000..aeb4b61a64 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install-alt.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:453dc599a43ba980b310e0420fc8fcc95ea06dc653413efd5b64e087635045b7 +size 13111 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install.ico new file mode 100644 index 0000000000..2c33b2a36e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:747ef2a4ef0eecc653d86a86b3f38cb36ea18d799e39b6d948ed5340ae354ab8 +size 11697 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico new file mode 100644 index 0000000000..7e070b81cb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/nsis3-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96899982c23b43956b425c9fed6118651397b8602748236fc8d89203d02bfd87 +size 12533 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico new file mode 100644 index 0000000000..80f415b183 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install-nsis.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af57f376d93c091c7deff84082c0b8267962a70c9a018f3981300ece8be165e9 +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install.ico new file mode 100644 index 0000000000..8af2e13185 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20f5116dd02ab3004ce701135f7d09211b6be3aadfb4c1559d7620ca05f11bf8 +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico new file mode 100644 index 0000000000..fb737c6cd8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall-nsis.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f45b9a6aaa741ab473ed4e53811cf0b40eeab7c4477d4bc47f06c94b443e99a +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall.ico new file mode 100644 index 0000000000..5284f667ee --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/orange-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48498bf6cee860bc17e00a4426a0b7a9633b264a74e89fa288668a8e69c02ade +size 25214 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-install.ico new file mode 100644 index 0000000000..77cc7fd42e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8080918da76cbc0a9df627c59eccaea1b6142008a67f9affd1a688fcfb66c0e +size 5390 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico new file mode 100644 index 0000000000..d2dbfe7798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/pixel-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:652f01a3a81456cc1cd1aabc7e14e9506db3c1298139e82da3b522563e933b4e +size 5390 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-install.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-install.ico new file mode 100644 index 0000000000..d70e0c4082 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-install.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a3ec42f393635307ae2e369ef50a8eb0fbbe02cd2f82c4c6d3486d294ddcceb +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-uninstall.ico b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-uninstall.ico new file mode 100644 index 0000000000..5eff32b9b8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Icons/win-uninstall.ico @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f5bae653fd5a00b6baf38a4eab2b2a0412c1932fa533570cd233d01437bf7bf +size 1078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/arrow.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/arrow.bmp new file mode 100644 index 0000000000..30c700ae68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/arrow.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1dfb50efbd9dc69818175eadd0ca8c8f975ae6916f83523505e488d48f21e6a +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/llama.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/llama.bmp new file mode 100644 index 0000000000..3956976546 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/llama.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9af52dc2c1444a2ae53f3cca9282bb433af4ef4ed850c1133447b7ba731174c +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis.bmp new file mode 100644 index 0000000000..8a072b00c7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1cd4e5a3d2ebfdc477ca00b5b8c127df149df80cf089e851369db75c61cef4b +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp new file mode 100644 index 0000000000..64d4ec293d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-branding.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:411961864a8edb7cc2ba384e702bbb787040ea47488d2cefc2ef2c6f0a55a832 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp new file mode 100644 index 0000000000..bac99469a6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-grey.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e138faec4410e66f0b4e3199badf019bc83c1fa13f4409e8719b6762ed908be +size 51832 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp new file mode 100644 index 0000000000..c78603aff3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-metro.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2079f7a3eba60e0d9ee827a7208aa052a71b384873b641de5e299aeb8e733109 +size 154544 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp new file mode 100644 index 0000000000..6dd2c161c5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nsis3-vintage.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b4a33ada04c9919fed2028562042ca5ffa8918f45905f6c41c68850f58ff5a +size 51920 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nullsoft.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nullsoft.bmp new file mode 100644 index 0000000000..5eb6ed71c6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/nullsoft.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7a5b209189b77423be7e213444e30f2d6f79ba688fcf9c063b5618ebb625a51 +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp new file mode 100644 index 0000000000..74c33adc4a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076221b4527ff13c3e1557abbbd48b0cb8e5f7d724c6b9171c6aadadb80561dd +size 52572 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp new file mode 100644 index 0000000000..e3d5bab911 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall-nsis.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0278ae60eddd3e03cdb37a873221df0656eeb4541b0190898de1ce8f0427a5e +size 52572 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp new file mode 100644 index 0000000000..9c638a0d1d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange-uninstall.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:498d402163d5d4578d8e76a22c97ab927cf31bf16f7125938cf03cc200c7a290 +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange.bmp new file mode 100644 index 0000000000..83f557b580 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/orange.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7b2f12e01cbea88d4f645f797f2ca6107d76ae13cd1be6dc532b759bfe0d925 +size 52576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/win.bmp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/win.bmp new file mode 100644 index 0000000000..a9e536d4dc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Graphics/Wizard/win.bmp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad2dc318056d0a2024af1804ea741146cfc18cc404649a44610cbf8b2056cf2 +size 26494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nlf new file mode 100644 index 0000000000..1ab347030d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db12941460eda9e69ffeb7dbbc9df8fe5c2314853d3e2cc66b19a326b181532 +size 4876 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nsh new file mode 100644 index 0000000000..7a49284451 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Afrikaans.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71a399cca66034e993ddd5893290e62526c487cfe79f9487b9dfd969d97aca8 +size 7131 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nlf new file mode 100644 index 0000000000..9dc0305bb4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:842f88c081ed8c8a42a87e6c7e1d3f58837955bceb72909b581213e051c9f60d +size 5537 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nsh new file mode 100644 index 0000000000..7592c91b9d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Albanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87f21896faf8646b3a04d17476d60a7101cd4c9295f6560b00215ecea13b268c +size 8065 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nlf new file mode 100644 index 0000000000..72ad229024 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:686b85e458dcdd30b0dfd2a902b1f671abfc5e3358485699e23d952e34f74c7d +size 6290 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nsh new file mode 100644 index 0000000000..94e32004e6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Arabic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c371d8cb0f183c705eb5e4a85671dd3e3ab1faae0fb2b7e0e183c6a23aff1731 +size 8698 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nlf new file mode 100644 index 0000000000..9e8d67f4cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a342f1d35f9ac1ec9fd0deb5a0ff76a9e2bab8786f77bedd0d44f34a319cf636 +size 7230 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nsh new file mode 100644 index 0000000000..fcfda3622c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Armenian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fff0b8d166ffa98ae35a6e4b9f2867cf9157ff216bc12548578ff62a1562a0 +size 9929 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nlf new file mode 100644 index 0000000000..a9a5ea4579 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:112da4de3de9959ba66e677f3800870129e6126cfa930512b818528c56cf14b5 +size 5607 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nsh new file mode 100644 index 0000000000..bd9baee19e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Asturian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c26872e741af8363d1a8aa8c92cd594707482dcc2235124cbc177295cf56fd +size 8026 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nlf new file mode 100644 index 0000000000..cfae4648c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef56a6886873c6c847635fa474bb086b45738f13d0bf1f85ed2569c5cdb183a +size 5249 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nsh new file mode 100644 index 0000000000..448e485995 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Basque.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:924f33ec0417494149f2aa8534a11198003ab672357911854ceaa0d26b33c89d +size 7845 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nlf new file mode 100644 index 0000000000..7a23d8b63c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09f05a37db6f4e60574309dbcd4d3010006b888d8f214340c9846aa2c1f02963 +size 8498 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nsh new file mode 100644 index 0000000000..c3915a1b97 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Belarusian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5637212a42f812326d5552c9cc8ae675bbae094b330835a7318a9ab8565f1d5c +size 10690 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nlf new file mode 100644 index 0000000000..6fa4dc5f98 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:237cd0f56ba5c874bc177f03faa0b965a98d7e04ed035468b15e5f9fedf5a266 +size 5332 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nsh new file mode 100644 index 0000000000..079967d4e8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bosnian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2c18e1bc6946174421d3e3a9c5456daf393515b5146b3490d07c1ee979346d4 +size 7719 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nlf new file mode 100644 index 0000000000..9a1a279718 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:def6fb144908a12914b524beb13137d3c42649d65cb74700b3af86865f541702 +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nsh new file mode 100644 index 0000000000..2a91828cce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Breton.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6155f93710a5e4a82c72823e20d2918a17c87607dc58a1ff50c1f88276f009 +size 7565 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nlf new file mode 100644 index 0000000000..e13d1d2f2a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff6aab84349dd67f28a4c9911873bef9f6780fdb925dcab12a8209cb49ff1d04 +size 8143 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nsh new file mode 100644 index 0000000000..d3ae68bc93 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Bulgarian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8a993e3f480d5160be59ce2a7ad8de1e5486d22d446401171070d23307e272 +size 10245 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nlf new file mode 100644 index 0000000000..8c7e6706c1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a2f5586c36d9780820e80e6599682719d379a2fadb71f59a68c72897843b2f6 +size 5830 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nsh new file mode 100644 index 0000000000..2b22e2d8b7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Catalan.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130bc28b9f471d5aa0ddc59c57209ea30f6d669d2df40225728eebf285a6b13d +size 8028 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nlf new file mode 100644 index 0000000000..aac96bdee1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76067d17ebcb9a5ea701f9650609d796e9216bc20da28716fd3b95f23f03d53f +size 6407 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nsh new file mode 100644 index 0000000000..e5cff43a57 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Corsican.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9b414f1056bd8a415a29588d9373683e4eae526cb97c4c5c8f7f7dd510ed43 +size 8569 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nlf new file mode 100644 index 0000000000..0f46bfa9aa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84420e45a4e0f0e1a8876b89dd429aaaa728af75d099cc9fa2864346c442484a +size 5231 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nsh new file mode 100644 index 0000000000..a8adb2d5b8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Croatian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdba60beb62c104f5c783d2f6f17c82ca4e2228711fa7b13571cc3cea754777f +size 7610 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nlf new file mode 100644 index 0000000000..6751524403 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb34da78591160e3b200175470b0138e164c59cc9d32fd7d0b477f2d565b9e3e +size 5869 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nsh new file mode 100644 index 0000000000..e31bc1d1af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Czech.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0523b5f74af59601eee705bbcbc3c166af4467003b19b8fddc9a9e7c21e0807b +size 8296 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nlf new file mode 100644 index 0000000000..fed29e85e9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee02dfa6029317172e463dabda9ac7f27fbbb03a3ef138bcb4df56a4330eca05 +size 5387 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nsh new file mode 100644 index 0000000000..8e7afdf832 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Danish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb1c5a7dc0d2b92154f91ceead5765d344e0b73199cd465b96c57fd977eb57b +size 7990 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nlf new file mode 100644 index 0000000000..098c8f265d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a23625928bdbecf724dfb31e313dea70ab4d37c1829234d6b9ada8451a5d2295 +size 5278 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nsh new file mode 100644 index 0000000000..d792ba251f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Dutch.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f54a14d44cb9b3c24d9329663315003ebcc63fe1da166fc405c15012615b1a +size 7925 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nlf new file mode 100644 index 0000000000..8cc34d507c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af27bb146b370531de867dc8eaabb8203504c488294b01a0980e2e6f5a84ea0 +size 4945 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nsh new file mode 100644 index 0000000000..a979323d54 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/English.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3d0d818594024910304eec9c65888d4dd4f88b844bb620f60f4a65f8b266f2b +size 7745 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nlf new file mode 100644 index 0000000000..880122029a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a51547e4d35c2f3235fb30a30b069e43d1d3e77b3a91cfed5828320f60ea1a14 +size 5341 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nsh new file mode 100644 index 0000000000..45195eb216 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Esperanto.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba032bbaa8f3576743a693c473a97d95e2e3f8d9475400ceb16b8e273fa1f3f5 +size 7994 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nlf new file mode 100644 index 0000000000..626f0136db --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1803d376d4383d4039ee11c7352c3508d9b1134f9656754dc1d05d6ef87a9a6 +size 4897 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nsh new file mode 100644 index 0000000000..c09a1dd25f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Estonian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069f87bbdf48b266d422c9fe46e3d420377a2b8d8cb4724316423bba4ef4e294 +size 6816 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nlf new file mode 100644 index 0000000000..ab83ed3213 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1495ed20b9ed1c24ddba107f226408d737d82516288e8d905c835e6b31b95c6 +size 6951 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nsh new file mode 100644 index 0000000000..946b9a61d3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Farsi.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37b80758410c05dce61d2e32157f6c4417ad5371798136d2a73014e5c79121ab +size 9506 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nlf new file mode 100644 index 0000000000..240cea87ed --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfc5046fdba5b7a25571ff80801661a411467fd98a1fd4887c2bf877ef4c2c8 +size 5019 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nsh new file mode 100644 index 0000000000..f4a48df757 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Finnish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cc8204b34b6714841bdf5af9edb80ce3b9130798fc749c18689b249d36f3ca6 +size 7247 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nlf new file mode 100644 index 0000000000..9615c7a692 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08636d861bfbbf0e55a282cbf702a96b6b112ea64203a269b21c94501978cecc +size 5820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nsh new file mode 100644 index 0000000000..fed565f1e7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/French.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4801c192ab30d0c6e1664abb37b00f2f32b5a9dfaf45c0c15325982cb2a486 +size 8640 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nlf new file mode 100644 index 0000000000..55dba2de35 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0876dba60597d4c7e55b6ad3964b644ea1a59ab81be7936f07ebc06ee046ee29 +size 5428 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nsh new file mode 100644 index 0000000000..5bb7871e82 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Galician.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e75b56bd61b320edaf55ed756e86600b37c491085cd5aa105a2237f1fd970a +size 7419 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nlf new file mode 100644 index 0000000000..2c8903e180 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5b075c6c1b402627c2199602080e6dba9c951ff4a6bea7aeca88da65bd0efd9 +size 10068 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nsh new file mode 100644 index 0000000000..4e7b6eff68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Georgian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2785bd0c1860ead0facf61b18fd2964ef523290d1679201c6001c2543ecc3996 +size 11734 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nlf new file mode 100644 index 0000000000..ecb0df85a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2aa56d86cd597c6e302201009cb8118a39e5d46ec4c92e019b6bfea19756d21 +size 5777 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nsh new file mode 100644 index 0000000000..e41874e789 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/German.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82791806bf8693b2bf7f9e4ae48657c7584e192c1c11b3203db51bd62cb88e75 +size 8823 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nlf new file mode 100644 index 0000000000..6e7413048e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a4176de414cebf277e06c055ea128ca06c2ba6fe6138937b7cbf33013d33e4 +size 8477 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nsh new file mode 100644 index 0000000000..68e785884c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Greek.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a98077189f5f3074b3d23565b5a5c5bb939c02e606986c9b1155a614beae2cd0 +size 10898 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nlf new file mode 100644 index 0000000000..1b3dd9984b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c954912110444c970b84e291fa73b020aa75f75f09021d5a6387c1b428f2ca6b +size 5949 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nsh new file mode 100644 index 0000000000..4acfc1e3cb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hebrew.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:540daea8739cfb440be99e4ef5c5df4aff45b28892bd1b39b9cb37c23bacf139 +size 8803 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nlf new file mode 100644 index 0000000000..339fea4bdf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1fd207f4c6ece7121d69bf68bf0a108fc93eb0172fbf7cc241f4680d2a8ce59 +size 10610 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nsh new file mode 100644 index 0000000000..616c6c9078 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hindi.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:888da761fa6b8e6fd61e6521343d9b58a5438515c22c2f4ee74d48636d0cf441 +size 13430 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nlf new file mode 100644 index 0000000000..50a33e4137 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e096270dcd8d8fddba34601c56e051abc89a793ec62445fdf14f0bbb9529c8e +size 5806 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nsh new file mode 100644 index 0000000000..ba0a2dc1b2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Hungarian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b17e597afbdd0ee794726841336549dea0511f9d30c9c23c1ecb35d140c3847 +size 7656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nlf new file mode 100644 index 0000000000..7811d350f6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00b9681b6c185268f9ad097046c2b65835df1a34a2b7dc380a57de186c7d3c3 +size 5694 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nsh new file mode 100644 index 0000000000..5495f1bc29 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Icelandic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ebe5912f15b3a64ec5db147c606da6d599ddcc553d3bbe90696133eb9b8147 +size 7663 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nlf new file mode 100644 index 0000000000..235cf8a837 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a095efb924f5aae164dc5a14faa7c529afe9c8b71d9027d7e7adff0efde15f32 +size 5758 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nsh new file mode 100644 index 0000000000..c17fc079af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Indonesian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ac5d883eabc10d94040daf1c65deaf24e81a4a39484adfdd1c6a7c5e4f1fb6 +size 8220 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nlf new file mode 100644 index 0000000000..cd8db2fe24 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d87c9e139f92703e589d83bc5a594d60eb829d7acd4c148f8623c818c8868236 +size 5873 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nsh new file mode 100644 index 0000000000..89b70d0788 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Irish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:272e1f53910d1f41a5d6ff1fe3cb8a6d6369397b806437b04ef25bff89332aae +size 7775 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nlf new file mode 100644 index 0000000000..4a3bf73b6b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1371f958c8ccc3a0f23ab4bf1ceccefd962ba4785534531de70dacfe5d6041d6 +size 5598 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nsh new file mode 100644 index 0000000000..c137fb221c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Italian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:356d5dd50c326e8a8f71a52340c0ad764474b30a80733e563519fa2bd38da494 +size 8597 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nlf new file mode 100644 index 0000000000..fffca7ff47 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4cdcf393b15802c75351273250e192db45d5af82d876cdc6c16151430e4642 +size 6614 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nsh new file mode 100644 index 0000000000..8d9ac937b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Japanese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04f47fbaf590f1ffa1ce8054ad7cb331c70c932f51637e6a7b711bb2890b7e9 +size 9784 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nlf new file mode 100644 index 0000000000..1353e91889 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6ed4431ff6e6996773db8ea462f78a68bd1819fb2ab3fa78814ac57014b6238 +size 5499 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nsh new file mode 100644 index 0000000000..74b90865d1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Korean.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9482e17687e0612dd87c5320bda8a62c0de8fed388e554d6530e312f238fe5df +size 7995 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nlf new file mode 100644 index 0000000000..6049cb37fe --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:865d5c15fb58435fcfe28d7cac011b1d6b32898e23a8a606b4967df4c968d0ea +size 5853 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nsh new file mode 100644 index 0000000000..f36b601e63 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Kurdish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f660de2b5df150fb6b5a58f8da3f9a8826bd539abe2bf2b4e2c1e9cb27e0c9 +size 7974 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nlf new file mode 100644 index 0000000000..bd8ceb2d85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84b7069796f18de481179537f2c55928e1da1272738f0c9a4f5f53b022264f3d +size 5605 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nsh new file mode 100644 index 0000000000..fcf043d19b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Latvian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a489a62651be619490073df6088af25967f04b7076dc5aebf0ef517d5648cb9 +size 7670 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nlf new file mode 100644 index 0000000000..9211138f07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b552f3f7ebc194101c52b11377445740a106ed689f34d9bea76b1c834fc888a0 +size 5330 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nsh new file mode 100644 index 0000000000..a81087240e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Lithuanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bfc1dd7673aa8062ff6a184eda75c427c18f41f51d607df33b3d22f5b4904f +size 7240 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nlf new file mode 100644 index 0000000000..b5c57f39d7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e641014e6ba4845af8798078d71ad166c9b0b3ebd90efe7fa316941e39a18307 +size 5714 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nsh new file mode 100644 index 0000000000..4108dbf52a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Luxembourgish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a221bfda955710f60e5bb845b2df0349b02661ddeefb4b2c10d3840698e0d7d +size 7834 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nlf new file mode 100644 index 0000000000..eb265262bd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f05cffba5a82082dfed55524803d8e4a1674e8cb79a99bce699b0f3627e6e58 +size 8255 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nsh new file mode 100644 index 0000000000..61eb834a72 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Macedonian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81defbfdbeec0f43a8281c97f7cedc7db1777aae8958724dc1553e4c1edeebb3 +size 10317 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nlf new file mode 100644 index 0000000000..4385400988 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6bc3b1413a63ea98a3a807581c87fa221a18fa11a0883e6bdecdf4e7380eae5 +size 4793 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nsh new file mode 100644 index 0000000000..d2cd8bcee4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Malay.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875c4cdbd9644ab81943477041fdbe45e4c6da6859624132cb115631646a38a5 +size 6923 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nlf new file mode 100644 index 0000000000..fe3d4c44d6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53e0c247f0891dcd4c7df330c24845220d9b2500c934859b8ac343acdf6fcff5 +size 7228 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nsh new file mode 100644 index 0000000000..73de3d36d7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Mongolian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b661fd39d284f1183dcf75d9064f0d3f1595c95e5257050112e7d61d829f5b +size 9982 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nlf new file mode 100644 index 0000000000..dff67004e3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:790be7026f30fa05c4d5ad1a94f97f4127969f3bee25d332918f0b250cae7fed +size 5074 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nsh new file mode 100644 index 0000000000..400e1b2d88 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Norwegian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:612f66775832dfa570920a0953e24a1b23f8e0f4fda94e0e276a60e2f9896b5c +size 7998 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nlf new file mode 100644 index 0000000000..5a97bebc6c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f995b7184a01fa2303a64c0be2c401c104e7e3c13237126638023cd7f977a65 +size 5025 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nsh new file mode 100644 index 0000000000..64dbd7896d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/NorwegianNynorsk.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e5cbb8ae697455bffe60b8839fb512492b9fa510447994d41c129998f256c1c +size 7784 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nlf new file mode 100644 index 0000000000..ad5cd7425c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9952974c7a3aabae3dc1e2b553deb97cc7695e5060c1fa60cc16c211c5be8cb8 +size 6448 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nsh new file mode 100644 index 0000000000..28bd01dc8f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Pashto.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a8ce937913f955acb38a1d1112e857c48e639c67f1aa26d9bcf052ca5b48d1 +size 8653 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nlf new file mode 100644 index 0000000000..48e63985d2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06bc02413e4bdd73b5169b35aa668459cf52d028aeca5f7adcb03b777fc3608f +size 5607 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nsh new file mode 100644 index 0000000000..af3a1b1c46 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Polish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11b7323b711c7803aa23c3905e4c1e67f6e614281b05cc30193d7967edf92e2d +size 8471 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nlf new file mode 100644 index 0000000000..4e4892e380 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14325f19d8fdead0cc2831f5008acb8734ce4325fb5e09e5f260e47766c9ac98 +size 5426 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nsh new file mode 100644 index 0000000000..d2bf3a3323 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Portuguese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e96cd5c396be51c5e8f56d0fede95c6cd27b629c563965d4cfc3b8fb09914577 +size 8134 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nlf new file mode 100644 index 0000000000..7302a4b3e4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3cde87d4c0d6410685670e4ecd511f39720be5b90843efe2f02a4060ac2a9ea +size 5553 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nsh new file mode 100644 index 0000000000..ef0192b33a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/PortugueseBR.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0cc9509153d34799dff8a592fbafac82c3804df2e4e8e0f01051a040d1adbb +size 8229 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nlf new file mode 100644 index 0000000000..3cdbc05fe2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:679348a978000fcd237c160dc6cc7fddac9eaca9c3ddb1fd29dbe796538c0db1 +size 6242 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nsh new file mode 100644 index 0000000000..72aa78b780 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Romanian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c226854853748771763b88c8eb2326dc9d27d2333c56dda3557f67d5aa83ed54 +size 8209 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nlf new file mode 100644 index 0000000000..4ed7b345bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a0c8234cc4dbb91b09bca8cffe3add86c9c44dd0b5a82ca8c9045fe1fdfb37e +size 7684 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nsh new file mode 100644 index 0000000000..dcccab6a32 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Russian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23e620ac3e937392ae3732ac5c8c04c35d0ab870afc43f0af0acec634394aed2 +size 10516 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nlf new file mode 100644 index 0000000000..c873f3d2c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6266a612b8eb4205666abefe566d11707b02129bd90dcab39f2f969cda0c5ab0 +size 6038 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nsh new file mode 100644 index 0000000000..3497bc5e34 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/ScotsGaelic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd6f8aaf54504161377caf1ff638e87fa18206558e6506fb8a512acf6c9b124 +size 8527 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nlf new file mode 100644 index 0000000000..f55dea2435 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04b62a3cd1b8e7030545a050817200a5022f01cb423abe4c05e2ea859a9d1f20 +size 8193 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nsh new file mode 100644 index 0000000000..a30274b716 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Serbian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61173c38b65c1a49ae828b9b4a060190639152be40a69eac5399c6dcaf9c1179 +size 10384 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nlf new file mode 100644 index 0000000000..f21566d6c9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43cc8d4530216a771d348d53398953b9cc87c6f4450359b0e60fae981da864ef +size 5555 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nsh new file mode 100644 index 0000000000..d81dfebd79 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SerbianLatin.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29ba319222d10d8ca120e19908f2cf1e3c72d1006da7b5f12d52bd4489e42842 +size 7695 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nlf new file mode 100644 index 0000000000..ed711ca60e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d03518f6b472fa46d7b3719ded4eff0f1a458893feb0d0b7da2a29d65027657 +size 5050 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nsh new file mode 100644 index 0000000000..0003a39e2e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SimpChinese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:259e3b0462c02c6865ea6d7edabbefeb78cd37c3f012ed11986d959ae41721e8 +size 7683 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nlf new file mode 100644 index 0000000000..362a725541 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:800f5af00499c92fdedd42c5f3d2236d362b7a4f8aca028efe539d35365a56a2 +size 6488 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nsh new file mode 100644 index 0000000000..c47a933965 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovak.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7781395df08c1250469149919f6f155b678bb9651ada06361576ea485124374 +size 8906 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nlf new file mode 100644 index 0000000000..0285b09f78 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b1947583a4e281b05d40da2f4a5d15fc461d0878747c6059836bd9a4df986b5 +size 5171 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nsh new file mode 100644 index 0000000000..0719477f06 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Slovenian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fef7ff829bba29e847c2e00d76525e637b5fa1d0233b1ee42580affacdbb6d4 +size 8091 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nlf new file mode 100644 index 0000000000..36e17511df --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69a21d34f8fd911a69c2a4a8da27f501f6da902e9f4ec609871b22fcd0deb97d +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nsh new file mode 100644 index 0000000000..efb9d340ba --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Spanish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9b2ea59240218fafb5a803122fead674833db294812b8372014d1fe7b368f6b +size 8213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nlf new file mode 100644 index 0000000000..c007b7ee7b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26eafd82568c0ee329a1f4eb291f423a81cf82dad04df6ffad5221ca95371c76 +size 5554 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nsh new file mode 100644 index 0000000000..74ad82dad7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/SpanishInternational.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a4df06d5a7d0fdfb3409ae4053b6e8ea2ca2e8747e57e823b9e61c9af6a4d18 +size 8326 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nlf new file mode 100644 index 0000000000..4d81b590bd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:994679c93a66a6ab2a90905940a64e4e007336c52c15ca96a1d12d6021c0c47e +size 5345 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nsh new file mode 100644 index 0000000000..dca869c5e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Swedish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66237ee035e4badfb5fd23f7df30c5ce79505ee18e42a740b48f0087da50181e +size 8094 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nlf new file mode 100644 index 0000000000..aabf812d42 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ac87cf1ac8eb8707751fa802a451c9ea1d6668a28eb83310788ff0eef2dae21 +size 7682 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nsh new file mode 100644 index 0000000000..0f1f3bc513 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Tatar.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe009ab5e6322b9a53b35cc079b4f5631a094938bba1c1f9bfd5545fb7248310 +size 10312 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nlf new file mode 100644 index 0000000000..d15b8d2c38 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b13695dd61cbdebe4a4025bed9fd01607ca6848a40beae837a8844adaf319b5d +size 9985 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nsh new file mode 100644 index 0000000000..90181044e2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Thai.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1060b1f29d4f5bfcd5bcbab4037d9b7f243c7debc7e17da475e90cd7ba0a8471 +size 12742 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nlf new file mode 100644 index 0000000000..4f2d541a49 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a92595266f734e272dffc5aa1abaa19ce94efe35c755329f4d9473266f39bf13 +size 5076 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nsh new file mode 100644 index 0000000000..17ddc0863b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/TradChinese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cecd1cda6e6471fdeb1645979b4e47b30e1df9c79e93f9c35fef47b9eeef28c +size 7650 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nlf new file mode 100644 index 0000000000..ac254c1759 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1774d493a5ffa87c0e8bbe2e95521ecefca4bf2017450bc3c51865111d2eac98 +size 5743 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nsh new file mode 100644 index 0000000000..9431248fd3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Turkish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1606bb7c35fd93dcdfcefedd1a7014644f27c7701926476589f85b9f8fdf3d18 +size 8073 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nlf new file mode 100644 index 0000000000..8dfded5d32 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ceb67eb19cfb40a790dca0bd9e7aab56a299839a65245d6e7c63d53df5a3a45 +size 8073 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nsh new file mode 100644 index 0000000000..1748a7e743 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Ukrainian.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33c2920d5c5ed9591b0ae28084150c8b613fb621685d6d0a36202c35077593cd +size 10191 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nlf new file mode 100644 index 0000000000..6d1f651801 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b94d7d4f46a89be068e9fa41b288be5f170dd70450a042aaba0c087c40d0e6 +size 5495 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nsh new file mode 100644 index 0000000000..f8b45457a1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Uzbek.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e9d03d0a4be3acecab7a451bd45dab8157b7cf99b66b3c6f394773e5d7d8a3 +size 7604 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nlf new file mode 100644 index 0000000000..7ae5360541 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef1a249a8b4dd3ed3f37606932a43bd0d424f602c50f9270ec146b5ca25b6e8 +size 6611 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nsh new file mode 100644 index 0000000000..3346667eb6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Vietnamese.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ee08c85d2e6aba54c4399bd673d62b7cf38595c044b8afc9efdd8d6cb242686 +size 9243 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nlf b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nlf new file mode 100644 index 0000000000..90b915c2d9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nlf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4aa0d517d4b0cfde3ae4aedd27d390d1eb6489bd50cffb96b07de2639cdf594 +size 4737 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nsh new file mode 100644 index 0000000000..329c3006e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Language files/Welsh.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99842d64d010c83bece4435b2ff59e5e3c9e8e0e78b547d9952722b389287b66 +size 7012 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Deprecated.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Deprecated.nsh new file mode 100644 index 0000000000..9cf328aeec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Deprecated.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42a6cca1d7b9396415e834b8547c5ec873184f4c100c650f67754f5842e37c5 +size 1891 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Interface.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Interface.nsh new file mode 100644 index 0000000000..a965729f02 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Interface.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a2aaff78ef29edbae4c7f15adda5bebbfdfbb67c39de953939f78a98d97af54 +size 10295 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Localization.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Localization.nsh new file mode 100644 index 0000000000..aed92f81af --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Localization.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:608bbc728d486fa9267fbf4be3e8961d6cc752ff6b89d990dbd8afb515712b35 +size 4821 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/MUI2.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/MUI2.nsh new file mode 100644 index 0000000000..a2b3dbdcee --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/MUI2.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3075ee0418ec52adaace597426eeda384715d6e4b7b99105df16f1158830ea +size 2354 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages.nsh new file mode 100644 index 0000000000..be7024321d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cb67424fe2dec1a8e8870c5329d56572e7b396b3ec76192ca288e39695e1896 +size 9392 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Components.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Components.nsh new file mode 100644 index 0000000000..2f249995a7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Components.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38f553cd4088aa6af9f258dbc4835e5d3ae1d6b6848c5396d83841532c2bca08 +size 6998 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Directory.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Directory.nsh new file mode 100644 index 0000000000..9288718dce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Directory.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e52d5328c53252837e577bcb2d4d0578e44e55672c742f7ce3795a4f697aa28 +size 3598 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Finish.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Finish.nsh new file mode 100644 index 0000000000..c3df02464d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Finish.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:700255fec4c1e9ed3e3e05672bbcbe6f4de48e21e4cd85be6f34771725725a91 +size 18056 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh new file mode 100644 index 0000000000..28b996964b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/InstallFiles.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261926dd6761321599820403603401dc54cdf77fc54967edb2d0af4f842feeb1 +size 4973 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/License.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/License.nsh new file mode 100644 index 0000000000..eef95185e0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/License.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0e23d50459dd45efe7e03fad862abd76deae8bc007148d24be7f5b5e2ecc7c +size 4477 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh new file mode 100644 index 0000000000..d791223fdb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/StartMenu.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:454f9027e5ebdfbe5d27cb6e2352071f7ebdb671d1810bf466f222824e680a1f +size 8196 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh new file mode 100644 index 0000000000..0e44b110eb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/UninstallConfirm.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5a18ac6086fe8519800e3743746a918c00522228accb3b547e281c170e58e46 +size 2372 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh new file mode 100644 index 0000000000..130c130e94 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI 2/Pages/Welcome.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bcc9899e10eece70623feaf26ef6bc2181b8a0fdb6781f6cd6087313d7e65d +size 5367 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/System.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/System.nsh new file mode 100644 index 0000000000..2861f0e3bf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/System.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82197008c4d94361e96bfa0018b08a11288e607f6076f6d9e7578e85c245e39b +size 69141 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/ioSpecial.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/ioSpecial.ini new file mode 100644 index 0000000000..662cb70202 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/Modern UI/ioSpecial.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95aed234f932a1c48a2b1b0d98c60ca31f962310c03158e2884ab4ddd3ea1e0 +size 211 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/default.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/default.exe new file mode 100644 index 0000000000..9f82817326 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/default.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c2d8ea96f0384d99035d27fa41eb8eede006c9b225e04861f53ac85d991c94 +size 6144 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern.exe new file mode 100644 index 0000000000..ec3cd09059 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6c763821a0e4e8ca76a4531dbe50dc88cbc7e5238a5b76a0646722b2524ee3c +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmp.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmp.exe new file mode 100644 index 0000000000..2fe25ed0f4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmp.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e0219c836fa09339baa099252ce67d7f8371678a922d4d25c02aad6651bb5e +size 4608 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmpr.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmpr.exe new file mode 100644 index 0000000000..1f9a9941c7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_headerbmpr.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889067a7349aef40da2f683a3c04348cee185fc6924c54104a0ec7cd085011f8 +size 4608 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_nodesc.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_nodesc.exe new file mode 100644 index 0000000000..38e79b8700 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_nodesc.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3567dbc24d4e7eed7b343407db7780592653adc1080882291fe360666fc8192 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_smalldesc.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_smalldesc.exe new file mode 100644 index 0000000000..86c7a44bb3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/modern_smalldesc.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768ce0ec84741170c595d826f6035a66728fd63b8d7822bbc76f42be5e4461c1 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/sdbarker_tiny.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/sdbarker_tiny.exe new file mode 100644 index 0000000000..55edac3f23 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/UIs/sdbarker_tiny.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a7c2f82de91cc677bdaec3f987396a46e23e1f442429462487f245a339c9ca +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Base.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Base.nsh new file mode 100644 index 0000000000..68a08d59c6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Base.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33dd30f1a17094bb13b50a8dac228538f197a45646edc889998b9cf3bfe0778f +size 1747 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Classic.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Classic.nsh new file mode 100644 index 0000000000..3d95aca686 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Classic.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b704c2b7076894c01cd10f70b17b7b0cf83c5770fcb52651555be03a53153add +size 118 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Modern.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Modern.nsh new file mode 100644 index 0000000000..e02abfeb2e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Contrib/zip2exe/Modern.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b95281e020a50f4e6e35c7e0933ce74a61e7b012efd546d2ce91b4338435aa75 +size 213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/AdvSplash/advsplash.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/AdvSplash/advsplash.txt new file mode 100644 index 0000000000..2945262713 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/AdvSplash/advsplash.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c751b3e2dc24f57de57ad3e69d5a4de9ae023fe4baa10fd2adef40abb7b26691 +size 2019 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Banner/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Banner/Readme.txt new file mode 100644 index 0000000000..22f8e6a1ec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Banner/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7af71b9e45165775685edab6a6041582b30a0b82d2aa0ab0533026c0ed49a30a +size 1215 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/BgImage/BgImage.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/BgImage/BgImage.txt new file mode 100644 index 0000000000..23214dc97d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/BgImage/BgImage.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e97d5c8f019f6de7f07457847f98c43323c5801da6896140ffe73762fe21f2fe +size 3133 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Dialer/Dialer.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Dialer/Dialer.txt new file mode 100644 index 0000000000..74e8ff2531 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Dialer/Dialer.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1574bf72d2e98c6fdc969c195a1c11e081f538da402270ea23d07b8c2f0fdf39 +size 2993 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Changelog.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Changelog.txt new file mode 100644 index 0000000000..f7848193e9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Changelog.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42e533b26da9672ce6a94601bc1671d4b181ce1cd20a1665ce6ccf43a55cb630 +size 6314 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Readme.html new file mode 100644 index 0000000000..d657d392c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/InstallOptions/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7f4654fc8ee1df3e7d0629efbd5ff60b6ecd910f93c706beb60780d1551fc4 +size 52108 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Math/Math.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Math/Math.txt new file mode 100644 index 0000000000..2a8c7e508c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Math/Math.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d60019a2737478794352ae30bd6d5184506becc7fb8bb484e1239f7d73bcd23 +size 10258 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/License.txt new file mode 100644 index 0000000000..59cc872921 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5957bd99460eb21148bd2695eeb5a3718abae6b118040a4678926da3f4cfbc0 +size 840 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/Readme.html new file mode 100644 index 0000000000..2008371494 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae900a1812d5affec3555289057f97b170b2e0bb02fe5e79c2c7306ccb7a9f5 +size 78646 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/closed.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/closed.gif new file mode 100644 index 0000000000..48fa500bd6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/closed.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b601482dd9f13043f50fe3e85158a52833f697feb5bd490f76f7b017070d184a +size 203 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/header.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/header.gif new file mode 100644 index 0000000000..c273ab2338 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/header.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab302133999a9443abafe3db3aca16112247b225949a63de800f72738c1b1ff +size 6023 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/open.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/open.gif new file mode 100644 index 0000000000..f487a14798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/open.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf447ca33cd86e0b4424d111eb4337247bcddff5a89205d4a128b1a44bb5c1a +size 138 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen1.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen1.png new file mode 100644 index 0000000000..fa5f363a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b24d171b68922e95d2335bd021812f53e96780c2a7ae576de3783ac3b585b8f +size 15647 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen2.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen2.png new file mode 100644 index 0000000000..f2a9802ec9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI 2/images/screen2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f211103afc4c797665fef17ba35ca87909f8219a9fe8c71eca243ea8a9f1b640 +size 18437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Changelog.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Changelog.txt new file mode 100644 index 0000000000..4c5345463e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Changelog.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:714426e60941f08ddebc5269964a8d722ca49f4f1df1b8a0d8c5c4a0443847f4 +size 11738 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/License.txt new file mode 100644 index 0000000000..449fc8efec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75416e94e65b7584ee76e66f7f2f0b087ad8bc1371d3da4486091923076d36b3 +size 840 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Readme.html new file mode 100644 index 0000000000..2050333759 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8d1371a7d22e8973641848a9006823ce5de43d51780f9fbd434596d8852763 +size 81810 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/closed.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/closed.gif new file mode 100644 index 0000000000..48fa500bd6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/closed.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b601482dd9f13043f50fe3e85158a52833f697feb5bd490f76f7b017070d184a +size 203 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/header.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/header.gif new file mode 100644 index 0000000000..c273ab2338 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/header.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab302133999a9443abafe3db3aca16112247b225949a63de800f72738c1b1ff +size 6023 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/open.gif b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/open.gif new file mode 100644 index 0000000000..f487a14798 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/open.gif @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf447ca33cd86e0b4424d111eb4337247bcddff5a89205d4a128b1a44bb5c1a +size 138 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen1.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen1.png new file mode 100644 index 0000000000..fa5f363a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b24d171b68922e95d2335bd021812f53e96780c2a7ae576de3783ac3b585b8f +size 15647 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen2.png b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen2.png new file mode 100644 index 0000000000..f2a9802ec9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Modern UI/images/screen2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f211103afc4c797665fef17ba35ca87909f8219a9fe8c71eca243ea8a9f1b640 +size 18437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/MultiUser/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/MultiUser/Readme.html new file mode 100644 index 0000000000..404e103f5c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/MultiUser/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb450724804a7db34a0ed6fb6e7e5584922b2cdfe50c72272f9826c075a67202 +size 16615 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/License.txt new file mode 100644 index 0000000000..f29625313f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326e587f36ca58e14bd09cca153f9e69f1c5ed701189aa47d2d0627af7e16280 +size 943 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/ReadMe.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/ReadMe.txt new file mode 100644 index 0000000000..6e708d1f19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/NSISdl/ReadMe.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876948b4fbdcc1f7c3cc7462fee15f5d080fc13cdc4435d5f2e38c0391297dac +size 2969 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Splash/splash.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Splash/splash.txt new file mode 100644 index 0000000000..96156d13b5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/Splash/splash.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfade0694950c5cc018cafd4a74c1ebce6f0750ea30f65c60afccd082f42e3fe +size 1235 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StartMenu/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StartMenu/Readme.txt new file mode 100644 index 0000000000..3936268788 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StartMenu/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eb3175c027fd97a903cfcc1a3d952b658385b794d22097c5c9becc071a1fb01 +size 2264 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StrFunc/StrFunc.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StrFunc/StrFunc.txt new file mode 100644 index 0000000000..2941354fa6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/StrFunc/StrFunc.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5da2f62a3d1924ed1489812c13b30b32bf68198b35112542c0339cc79aa42a74 +size 24311 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/System.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/System.html new file mode 100644 index 0000000000..0f7dde47cf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/System.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:266ea005292cea22d664298d52756279efb0b37433ee5e4b74130c0b56e1210a +size 31131 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/WhatsNew.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/WhatsNew.txt new file mode 100644 index 0000000000..e014c19f52 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/System/WhatsNew.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7233c266e1c6c58040cf01692f5759a2625d924f05e0cf0de9d934d40e9750 +size 2205 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/VPatch/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/VPatch/Readme.html new file mode 100644 index 0000000000..924f18fadb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/VPatch/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6620653202d756efcc6d687aea61df8924d94dfb5ff64a010599772f39731049 +size 14024 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/License.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/License.txt new file mode 100644 index 0000000000..65fb33fd11 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/License.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab8e53598d27d3d06eda02ac0b42d462e9ff6f81ca406273004ebf53cd9ad42 +size 910 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/Readme.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/Readme.txt new file mode 100644 index 0000000000..a1163ffc47 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/makensisw/Readme.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fad664d6c78a195ff1ce14951b1c96821e6e5ff861b2ef2f8aa7a22a630738a +size 7396 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsDialogs/Readme.html b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsDialogs/Readme.html new file mode 100644 index 0000000000..f39713efc6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsDialogs/Readme.html @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31c6a356b6d265d805546bea5800921d6ba94d685830ee586cb998f6c3d7e0b +size 39832 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsExec/nsExec.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsExec/nsExec.txt new file mode 100644 index 0000000000..fafc5571b2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Docs/nsExec/nsExec.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73131e6349536576bfa8732a636c803443ccea75f4e1df90e3f3ace12384965c +size 1632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AdvSplash/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AdvSplash/Example.nsi new file mode 100644 index 0000000000..01feba3709 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AdvSplash/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e4aecdfef9011eb3b0196251bdd539db26212ef215201428b30c97bd6b32cbe +size 1171 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AppGen.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AppGen.nsi new file mode 100644 index 0000000000..f2d54a01ec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/AppGen.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b88d6ec34fe49fcf9a256967938e367185eab6e488a2a67d9ad1e19ee3ff433e +size 2047 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Banner/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Banner/Example.nsi new file mode 100644 index 0000000000..b4f8ff9782 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Banner/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:627d108fb160ea295756d64f8887b7b266a5bf4e2a03409ec991dcee90c32554 +size 698 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/BgImage/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/BgImage/Example.nsi new file mode 100644 index 0000000000..f6ce9ed940 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/BgImage/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7735746246b21f9a04aa837a2f6a34dcaaa15a58075177ac166126cada0a5422 +size 2846 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.ini new file mode 100644 index 0000000000..61b8de0baf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ce2422db8fc0ff38f011295ae051979833f6b7bcec162b8b780f655639d5100 +size 1534 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.nsi new file mode 100644 index 0000000000..b32dddaa9a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72daf671991e183c7e680eadaac02b17f3137a3b7ac8d79ef3c3f5af72a3faf8 +size 19385 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFuncTest.nsi new file mode 100644 index 0000000000..0b5359bb37 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/FileFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7b41d7af9396528442c33e8b1df58f1ae975cccda8f85901a7c123522b9bbd +size 14283 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.ini new file mode 100644 index 0000000000..c29d62ab2a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41b39cceab58d2839cf02e5d1406fe16f5e42806ef34d725036e0711cd3a82dd +size 1013 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.nsi new file mode 100644 index 0000000000..11a46c9a19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/test.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d9fecf3bfc499609bef8120141e0f707b76c86c8bdce911951a7a4f4915cc1f +size 2181 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.ini new file mode 100644 index 0000000000..c7fc046642 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18c78c47726f2448cf11f649296acd0c50f952f271a4c49913413d3c39927fe +size 1936 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.nsi new file mode 100644 index 0000000000..70591ddb5f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testimgs.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac12888c1e89577871b85ec793ccf5661a861140fb0a247f07e01c95b38d7e40 +size 1972 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.ini new file mode 100644 index 0000000000..e90f5de844 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d33608273d1bcd2724d541e5723ebc60a7a50c441457b09711e7658962d73352 +size 614 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.nsi new file mode 100644 index 0000000000..65584c4b8f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testlink.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01a2101691ba5485a781a3263d8d140e444416732a63569a881c5ea3d325d624 +size 1282 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.ini new file mode 100644 index 0000000000..b038532405 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ecfe6fd9bb84b94ebc569187389629f056188d8fb2e1365d680a67f19338af5 +size 1395 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.nsi new file mode 100644 index 0000000000..8eea239b16 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/InstallOptions/testnotify.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e32cd8b3eb132e5bfdfd525b21c6a128983a25b82c9bd2d0d6395c8ae022872c +size 4378 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Library.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Library.nsi new file mode 100644 index 0000000000..810158354c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Library.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3fc61892a4776133620fd142a3ec033513c90309963180bf2935be21cb682fd +size 8366 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/LogicLib.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/LogicLib.nsi new file mode 100644 index 0000000000..b714ce7465 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/LogicLib.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5bc3c46c5244215c39eaa08ad9734ef5c8d1ceddac813917b0130e0c12568c9 +size 12509 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/math.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/math.nsi new file mode 100644 index 0000000000..4746cb2112 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/math.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38b54bce4800e9af91a92922f163fccbf1db533a24e8452eb23af6873de0beba +size 1213 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.ini new file mode 100644 index 0000000000..00411ea847 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23584377db41787602314da35462d1fb80186f317b82f7bfda1d3dc98efd0513 +size 1122 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.nsi new file mode 100644 index 0000000000..b82f52029d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abfea46c5646e1a20d6d9ab634582e361cdf5b4c893cd40d12a7be66fcb9fbf6 +size 5701 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.txt new file mode 100644 index 0000000000..ca5e7b1527 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Math/mathtest.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849cf3e8b23de0847414615525ad13d14adc2518e7e467e6ed4673b1f477fc6b +size 482 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Memento.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Memento.nsi new file mode 100644 index 0000000000..1e7c71087f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Memento.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e4f3e9c0b902b25556116a0ecdfdbd9e1f9771e68cd160af689f67faca6147d +size 1532 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/Basic.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/Basic.nsi new file mode 100644 index 0000000000..db4323aa56 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/Basic.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820f9e421a39da01c2a9b55fb699fd4a66ea1606cf0931a38b7ba802905a5bdb +size 1969 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/HeaderBitmap.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/HeaderBitmap.nsi new file mode 100644 index 0000000000..a9d748f33f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/HeaderBitmap.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e68d4b1164c3b31ecdbbc66de3c7d0a3019c95e6ba6e9b72ddbb3cd3be4c98 +size 2108 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/MultiLanguage.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/MultiLanguage.nsi new file mode 100644 index 0000000000..99f29db83b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/MultiLanguage.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804f7b067693ef5108fc40bb41f0056f3a2ec44325351cf1ddc223351fa900c8 +size 5995 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/StartMenu.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/StartMenu.nsi new file mode 100644 index 0000000000..07755ec25f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/StartMenu.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91a5a0f9ecbbe824811e25a81994e5269bf711314dfa31b3e4f832917afa69ea +size 2822 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/WelcomeFinish.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/WelcomeFinish.nsi new file mode 100644 index 0000000000..3692f40909 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Modern UI/WelcomeFinish.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:798f7f66639a86d979b0edc2ec721a6c071c4a157783d0d2a9da61cc5faee84e +size 2114 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/MultiUser.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/MultiUser.nsi new file mode 100644 index 0000000000..f62c3649cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/MultiUser.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:408b0e03eeee867c412c3b535c56f7e34051402c028888d0105b3e69c87bc824 +size 1886 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/NSISMenu.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/NSISMenu.nsi new file mode 100644 index 0000000000..9b48ede6bc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/NSISMenu.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a43fbd429ffbe1c639b868a754cc994d176d7a364ea0b3f948e50d7a6c39ad32 +size 13017 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.sln b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.sln new file mode 100644 index 0000000000..7d2f7592c0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.sln @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dd7dd4a7dfbde0b4eb5f2e4887c339608ae1375a70aace975ef025ef6fcc34 +size 882 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.vcproj b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.vcproj new file mode 100644 index 0000000000..8fa99f8569 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll-vs2008.vcproj @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e7a8ce6702baaff3019d4bd01d6e250dc8aaeabd626f14970eb640e1847291c +size 6303 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.c b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.c new file mode 100644 index 0000000000..135e0162b4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.c @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11228585743a3dc4e36b6e5273f82fb55dd5ca8d0ba3d6a4c39df7e53e9e0fbe +size 1285 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dpr b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dpr new file mode 100644 index 0000000000..5c8f5d0202 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dpr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cfad5f65b6b77a1156cd3c4817f6ccf3e515d010f542abc46d20c5d22a2fc91 +size 2777 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsp b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsp new file mode 100644 index 0000000000..1b68a8cba3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsp @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8828cfceaa1b7f8b4818e60dce47d16eae95958c624ae38d60b04acab36b86e8 +size 4346 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsw b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsw new file mode 100644 index 0000000000..663008d47b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll.dsw @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60b5bcf7b5ba6263d9402ada17ddaadb2034b606b47365f0acf9911e7287a236 +size 533 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll_with_unit.dpr b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll_with_unit.dpr new file mode 100644 index 0000000000..a14056d149 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/exdll_with_unit.dpr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:396b4b2a6846e6c4037f42fedd47a2be41817e82307e583ff5e5c972b063a4e9 +size 2280 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/extdll.inc b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/extdll.inc new file mode 100644 index 0000000000..06c243a716 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/extdll.inc @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4832a6c0b1462991a7498b03b7f82ee694ccac30788ad36eeab0e95d3009520b +size 2951 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis.pas b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis.pas new file mode 100644 index 0000000000..658434804f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis.pas @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6065cd68b5f969fd35b7c517bb1e7af05b1b8c0073bbdb9ed964c44bc612af7a +size 6471 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/api.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/api.h new file mode 100644 index 0000000000..2278f4fdec --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/api.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:054ac31308972afeabd79bb43fb927c7274da98c0f493c90a5267052466a4351 +size 3330 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/nsis_tchar.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/nsis_tchar.h new file mode 100644 index 0000000000..3f0f018478 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/nsis_tchar.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e767ab4f87109466fb4d53ee7224d5ffc71beffe6da6970fc5281694ad47509e +size 5054 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib new file mode 100644 index 0000000000..8e6041da2f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9095b3b1ce33bcf7237330f179c6fd480a12266de89cffdf22abd580f7dddd78 +size 7004 diff --git "a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" new file mode 100644 index 0000000000..ebfc029ba1 --- /dev/null +++ "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-ansi.lib_extract/build\\urelease\\ExDLL\\x86-ansi\\pluginapi.obj" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:287734d1d1dd507939e833c6e133c3f658cee651a92b8269f0b9cc6e78c6460a +size 5902 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib new file mode 100644 index 0000000000..82aee1cfd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc37fca4695d3b0b18b48e6474f31c76556c1a156affa43c9d92de0716aab032 +size 7012 diff --git "a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" new file mode 100644 index 0000000000..3bf461cbbd --- /dev/null +++ "b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi-x86-unicode.lib_extract/build\\urelease\\ExDLL\\x86-unicode\\pluginapi.obj" @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1377c838d96edbfe713ed1fef620abac652fd4174bf45ec063dd0668bbbf53a2 +size 5881 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi.h b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi.h new file mode 100644 index 0000000000..c9022a4c68 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Plugin/nsis/pluginapi.h @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c3e26aca38de6a9b3715266b1fdf27edb263cd4b6f0a27d0c44a014cb9e12f0 +size 3148 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Splash/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Splash/Example.nsi new file mode 100644 index 0000000000..18d1651240 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/Splash/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30426a804e51d8d46534a6e039aa9cf3bac1a8397d36ad9242185769c4c27b3b +size 553 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StartMenu/Example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StartMenu/Example.nsi new file mode 100644 index 0000000000..28e75c66ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StartMenu/Example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34937da391f11957b173c0f59b654e38c38a6c09b0636f0abeafe8eeff1b4700 +size 1231 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StrFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StrFunc.nsi new file mode 100644 index 0000000000..f07ed2240d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/StrFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ed9b8ae2c547c42b67bcd6c6304d97a2f332f3c02d715a46a8dc81657e4a5c0 +size 21602 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/Resource.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/Resource.dll new file mode 100644 index 0000000000..70bf509e9b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/Resource.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bae87ff9e13874b63bd34ed3fc9cbe10499a40e7311f182f4c0a06f861eb75c +size 31744 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/SysFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/SysFunc.nsh new file mode 100644 index 0000000000..12a60d031c --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/SysFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d510af9c9630aee76f3b5043797665bb66539a7aff6c66b69452b8158610670b +size 10453 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsh new file mode 100644 index 0000000000..372ddc63a4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b288f0d751a2b8270ce22c1f049f313c0f6606b65f990fcff6b0ad1c980dacb6 +size 14575 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsi new file mode 100644 index 0000000000..fbc7f09b4b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/System/System.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e14a51d6a39f394ce7550e26dbe1b503eabe86e6d05b06f7ab1bcb81586b4490 +size 5432 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.ini new file mode 100644 index 0000000000..993bd6b6ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a950b9cacd0e3f0ce3c2441016603aa9e0bda1363f560b7277d35334f84d8b +size 2007 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.nsi new file mode 100644 index 0000000000..51ca37b3ef --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa53281ed42046597a4238077a0afbfe1d76415b0e829fc31647860d6ee9c83d +size 24227 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFuncTest.nsi new file mode 100644 index 0000000000..8b494c2df4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/TextFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b35ad5bb83a21768b825cd177bbc511a355f9cd73f3f24945c9156facc3e2c3e +size 9078 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/UserInfo/UserInfo.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/UserInfo/UserInfo.nsi new file mode 100644 index 0000000000..bf6ce13dbd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/UserInfo/UserInfo.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba08fb3a9a3227c9f621395dca634f8e4b8ea89cc7509e18920ba7b9b5d73c44 +size 1417 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/example.nsi new file mode 100644 index 0000000000..88ae2f6152 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565557889a1cfdb0508e3f7708cb18a480d290d8e01bf70e16792982ee2d7391 +size 1670 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/newfile.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/newfile.txt new file mode 100644 index 0000000000..ae77dbabd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/newfile.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdea8d771a4bb6ff89a41efc6c8377e603cc60a9135673e08c493b905034df61 +size 125 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/oldfile.txt b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/oldfile.txt new file mode 100644 index 0000000000..7c21f84f5a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/oldfile.txt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0b9718141accafaf1deeb5bbe4257a72c748bd29e3d8b02081d6d6842c0910f +size 125 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/patch.pat b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/patch.pat new file mode 100644 index 0000000000..8f6cbe772f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VPatch/patch.pat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31fcf403adb523c74714cb11a21575b06164ec4e90f312a57bcd1ed290c40f66 +size 99 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VersionInfo.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VersionInfo.nsi new file mode 100644 index 0000000000..b5d0c03f10 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/VersionInfo.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78af7c50574292dc0f24c06772f2ab356447ec1bc6045e81370e5b1615cb9da2 +size 1029 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.ini b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.ini new file mode 100644 index 0000000000..9e98dc27d1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.ini @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f8d04f580b87a892c49f41c84e440acda74ac2a0158fcc5cadf9a63c98f7f61 +size 1796 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.nsi new file mode 100644 index 0000000000..1d2bd6d9bb --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFunc.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21641e528b9005314560c082e12430560409c492344f6330370d087a7175ebb7 +size 16437 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFuncTest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFuncTest.nsi new file mode 100644 index 0000000000..ea6ba44c97 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/WordFuncTest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a50cf54527d67a31d24964e7cc296c3d8ba773e093054100df5725d755f26cda +size 16440 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/bigtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/bigtest.nsi new file mode 100644 index 0000000000..1377811818 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/bigtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62ef04e125e4e4a89be60d0d87a9ee6608fe1c3ef0e3e25ca606dd1cbb97fc8b +size 8632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example1.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example1.nsi new file mode 100644 index 0000000000..815a1ffb29 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example1.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1f521a3c111e272f69409c2491aa700339920a510e6fee2d130561df559851 +size 1018 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example2.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example2.nsi new file mode 100644 index 0000000000..0cdc3bfe62 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/example2.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b4a5881d0967624bf18019f79df319d98c374a8bea6701f0f4d99fc4c6bc78 +size 2776 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/gfx.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/gfx.nsi new file mode 100644 index 0000000000..e14ce68392 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/gfx.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e16b458bb0c10d59daccee0454d75e019f7c9fbb9171710a36492ab6241fa1 +size 3301 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-per-user.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-per-user.nsi new file mode 100644 index 0000000000..007d9e1873 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-per-user.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97daeba0cc66284296fe1de8e0c7880a80d6a39023f0b85984980fd78ba7e8fc +size 8953 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-shared.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-shared.nsi new file mode 100644 index 0000000000..4b095198e1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/install-shared.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5058b22454bc275ca287187e5a6d8e400eff83affd53196457508b11982ab82f +size 2924 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/languages.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/languages.nsi new file mode 100644 index 0000000000..b4750f5cc9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/languages.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06cd95e0c62ca2cd500f71416586e6af300af2c62a3eba7684488650edb6150b +size 7366 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/makensis.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/makensis.nsi new file mode 100644 index 0000000000..3b6b29398b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/makensis.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fb8d79d484c418e6d5d731fd1f69df81daa3a1fd519f2077a9d71f4003b8a1 +size 35197 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/InstallOptions.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/InstallOptions.nsi new file mode 100644 index 0000000000..54c1b18b53 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/InstallOptions.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5efccd933e658eda968bd975050ecfc9b10ef591b441c1c5c9dd360f51227c2 +size 1135 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/example.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/example.nsi new file mode 100644 index 0000000000..31438b659d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/example.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:632ba0d16776bc3230eaf006728132da2c1056a8f04ec607d0d489c154844377 +size 7580 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/timer.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/timer.nsi new file mode 100644 index 0000000000..d2f4fe8dc3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/timer.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43dd1ee6199e54c5781c2096945f24a2d5dfd371d12c2cee47fa89de476c420d +size 2035 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/welcome.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/welcome.nsi new file mode 100644 index 0000000000..050a34e0f3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsDialogs/welcome.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64b018057b8e442813ff37e3b524fdb0af706965a3a4b12a095589f54d8d5964 +size 5609 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsExec/test.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsExec/test.nsi new file mode 100644 index 0000000000..582c2ca0d0 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/nsExec/test.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d1508ac73883fd638f28c64e527bb727e2e20e9a7a69818a75781aa8d8f3d9 +size 812 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/one-section.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/one-section.nsi new file mode 100644 index 0000000000..2307e3a5fa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/one-section.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:072e7b809c2c67dfe4451aaeb61ffdb5c3b4ddf90f4199550f004cf9c892cbda +size 1592 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/primes.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/primes.nsi new file mode 100644 index 0000000000..350269c892 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/primes.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71afed4c75bdccdba9a1cfc434663b7c58182e066b899c3e5aa7b36568c7ee8b +size 1656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/rtest.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/rtest.nsi new file mode 100644 index 0000000000..d4a0622bb1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/rtest.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3f65b0e5938cbeff8c824652711e2ca8b8a8a5d160e5fd6a5659693c7c6384d +size 1325 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/silent.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/silent.nsi new file mode 100644 index 0000000000..8e844551c3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/silent.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f71ce3792e2a8cf69c6666c80e2c0fac4a8f8d61db69a0761af70505412fb6 +size 2217 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/unicode.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/unicode.nsi new file mode 100644 index 0000000000..772d4d52ae --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/unicode.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a0d30e730ee4f3efaa388f803c363defdfdcfbcd6635831f54580e5e40496e2 +size 1033 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/waplugin.nsi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/waplugin.nsi new file mode 100644 index 0000000000..e66750f74b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Examples/waplugin.nsi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5536e4f4f773fabcd165cb08655ddcd74bd6238fd3584db8fc9df34f824374 +size 4708 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Colors.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Colors.nsh new file mode 100644 index 0000000000..98380d44ed --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Colors.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91fb24714a1f20a70c643e2192372da8ba09dcda5f31a4128bf30d1b20ba89ac +size 1858 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/FileFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/FileFunc.nsh new file mode 100644 index 0000000000..c794cd1dcc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/FileFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:476f33722ff773cfec60876c5f270f2aadb9529e9b73730fa8c41e9490f4b0d6 +size 40522 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/InstallOptions.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/InstallOptions.nsh new file mode 100644 index 0000000000..19211535c3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/InstallOptions.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7e3d9432d11cded958166035a09ac07df9103fd04134c423fa8ff3ae6f618e2 +size 4820 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Integration.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Integration.nsh new file mode 100644 index 0000000000..a3c6cc8fe5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Integration.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f692ae3d178f6f750db3a6a7bc338153d13d3d454eeb410c4e750ef92c1291 +size 1240 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LangFile.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LangFile.nsh new file mode 100644 index 0000000000..86f01ebcfd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LangFile.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea30a5c45464ffb745f0988f4878f703705ed7590407e566b331d4bfba3cfe9 +size 5494 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Library.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Library.nsh new file mode 100644 index 0000000000..c138a431c1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Library.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c58a8193f572693ade75cf6ca6c15685b9e63b5a70eac023d24046b3d4941f2 +size 21785 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LogicLib.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LogicLib.nsh new file mode 100644 index 0000000000..7e11292552 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/LogicLib.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea826abeae2c1eb9132c1be02f48d8752c32f47c1d115ce475974364b501a30 +size 34222 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI.nsh new file mode 100644 index 0000000000..6ab709df03 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a897943521449db447c23d98609c4688e15cbfca631bddebda8c3729c7fc87 +size 50 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI2.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI2.nsh new file mode 100644 index 0000000000..68c714a22e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MUI2.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c847d2009b55ff46f8bc1591ffda00f0194fb08ffebc0876cda669b7957b396 +size 50 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Memento.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Memento.nsh new file mode 100644 index 0000000000..867b17d61f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Memento.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87ae10e26482d363831ed1d71b75753d06f1e30ee980985c2e65ac1fa2d99a20 +size 12107 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MultiUser.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MultiUser.nsh new file mode 100644 index 0000000000..d5dc326a31 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/MultiUser.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c121141431b2ac961f887ca3fd6fd84b0234a3d82ee178b72fb6b4aadd19229 +size 14996 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Sections.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Sections.nsh new file mode 100644 index 0000000000..27c7d04f07 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Sections.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e2454b6314a3260fd2292cd33878f187d64b531e80c1bb8d250e013a901ab4 +size 6672 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/StrFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/StrFunc.nsh new file mode 100644 index 0000000000..4114a6366a --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/StrFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11a619df1fd06c72b3dacfe85b8d2ee2337f6010b2193df0da07a49ef8e6c48 +size 45978 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/TextFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/TextFunc.nsh new file mode 100644 index 0000000000..d2aca80498 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/TextFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629c6756a2a668dbfd252e8d7d723dec1c5f059de093cfbb58469281a1a6ed99 +size 24348 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/UpgradeDLL.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/UpgradeDLL.nsh new file mode 100644 index 0000000000..307ce2843f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/UpgradeDLL.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b643f7e195e0b08f87bf4de64bb949b39abf4f32e8432cc2feeb88e709722e1 +size 5132 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Util.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Util.nsh new file mode 100644 index 0000000000..04970d8860 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Util.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a783d11e7e84eb9f825210a7dcc7ef7002991915bce71e0884245c6d235273 +size 5212 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VB6RunTime.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VB6RunTime.nsh new file mode 100644 index 0000000000..417ad344a3 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VB6RunTime.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2018376937d0a54b7f5e547822c66824fd7d9072204ee2a55a1fcad98cd9198a +size 3464 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VPatchLib.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VPatchLib.nsh new file mode 100644 index 0000000000..39d7e142fc --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/VPatchLib.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1ce20ab36f9fc6656a6cd95a555001e08808cf32236aa64f19ef66b290af7ff +size 724 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/COM.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/COM.nsh new file mode 100644 index 0000000000..c1f1fc97fa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/COM.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ece68ea2e0c50db3a241e133cb278126be9cfe779a6f70afabefd827b354a541 +size 17248 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/Propkey.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/Propkey.nsh new file mode 100644 index 0000000000..a3cc18f4f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/Propkey.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b97960d2f114e39bf3600c08656c235ea762cec3845c821c1d8d8b1a85b33468 +size 8509 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/RestartManager.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/RestartManager.nsh new file mode 100644 index 0000000000..cf55566810 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/RestartManager.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f1ca29b7ec6a5a604063792391d9b811d57484b002e6b87d50aaf584ff012cf +size 3578 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinDef.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinDef.nsh new file mode 100644 index 0000000000..e6bfd5134e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinDef.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f43dd5f6bac1f9c4fb50755768190a43b38722ecf572ad993866eff1687fa483 +size 1796 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinError.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinError.nsh new file mode 100644 index 0000000000..3291f1d3aa --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinError.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea23c45bc01a46a1530047b3db1eff2aa05d3951430a77fb4f6a5f53d000bea9 +size 8238 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinNT.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinNT.nsh new file mode 100644 index 0000000000..0cd98c6d70 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinNT.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c579236bf59a41b307ac7499065193a54c9158f24911cbbc9b2c739fd971e6a +size 10383 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinUser.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinUser.nsh new file mode 100644 index 0000000000..43e7606126 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/Win/WinUser.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3eb8c55e7cc7ed496e8ed192bd06900ae9781740a4dbb6e04f97340255abe47 +size 6328 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinCore.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinCore.nsh new file mode 100644 index 0000000000..4bd6b891e5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinCore.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75a7245de6b929105e74f5287a34296fb3c7b8aa3c810d15d414fc7a9d64cbc +size 11919 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinMessages.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinMessages.nsh new file mode 100644 index 0000000000..da4a354292 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinMessages.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97c154539b1761df7ce9b9df922be266697bbb28234d381dfa611529ccb50aec +size 36757 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinVer.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinVer.nsh new file mode 100644 index 0000000000..a80f6edea9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WinVer.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08bae30d74ea3cd1569ae637bfe044fbf8bab3b6bce51b44028a0f2a68ba3b69 +size 24615 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WordFunc.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WordFunc.nsh new file mode 100644 index 0000000000..00ba6a8b62 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/WordFunc.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59ef0a9261c212164a3ab54e6d9f49fb5cc962cd377c6fab6bd5f41e62291360 +size 43576 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/nsDialogs.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/nsDialogs.nsh new file mode 100644 index 0000000000..4224350309 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/nsDialogs.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d9e29cae063eef051866692699d225e1d33a1919f3d20c39fb4a937de76422 +size 45506 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/x64.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/x64.nsh new file mode 100644 index 0000000000..19db615a3b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Include/x64.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aea6ab8bae28e987d4ceac5385b29d781aab5c3a1879f66a4639be1ee7a5d269 +size 3962 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.chm b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.chm new file mode 100644 index 0000000000..51cc944132 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.chm @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ab384cdc93ff8fab8eb518f39af50d0cf1d5784a31d05e31a6328a72cf435e7 +size 414860 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe new file mode 100644 index 0000000000..467b2902cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:098e02127fc99072ca44226039b28b36f02d7e51d94e3e2c9af532b352695832 +size 91346 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/NSIS.exe_extract/$PLUGINSDIR/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/AdvSplash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/AdvSplash.dll new file mode 100644 index 0000000000..4943f166d4 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/AdvSplash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ab97f2b2da8ad04847ecfd4684cbb0dbdb05c554977a443eb9b4f5fdecd4695 +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Banner.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Banner.dll new file mode 100644 index 0000000000..ea40d9aebd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Banner.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f7cea80d648b2f55082778617dbd38694b134f181cd897d98d787be34ec9c56 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/BgImage.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/BgImage.dll new file mode 100644 index 0000000000..90ffd67f28 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/BgImage.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b17d8f988354adecd50d824568029ebd51d88293874ac2178cb49de2d763b7 +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Dialer.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Dialer.dll new file mode 100644 index 0000000000..c840b79a85 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Dialer.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e99c4b19beee26c7d0a50c6acf12c995d5cfc1a6c81cf28af0bb327b1c8d20 +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/InstallOptions.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/InstallOptions.dll new file mode 100644 index 0000000000..c6834aa6c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/InstallOptions.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3eacff80f6524a2b8573285865c8288b0e2ce9635bf62066de0138346f6a6f3 +size 14848 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/LangDLL.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/LangDLL.dll new file mode 100644 index 0000000000..07e1c9054f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/LangDLL.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71b233a4d2c1bd293e2f0a8caac9126e20a8ace1e6ff1a9e271bb2ca86e9bb67 +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Math.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Math.dll new file mode 100644 index 0000000000..d8b241d548 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Math.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a272cdd0e50c32590c4c94e18716d44bba0d1dbaac0f230a214895a7a67f8913 +size 67584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/NSISdl.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/NSISdl.dll new file mode 100644 index 0000000000..552e19874b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/NSISdl.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf1e20454714c1fff78f072d057fcca4086178b87acc3198ced624543571845f +size 15360 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Splash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Splash.dll new file mode 100644 index 0000000000..b774741ccf --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/Splash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aecc2b4fd72f30e26c15739393e47d0c89bcd7b6e8c2f1397bd60124590e22a +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/StartMenu.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/StartMenu.dll new file mode 100644 index 0000000000..879678019b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/StartMenu.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b2e11b8d772efdd1a7076e8a9869c99ef8507becbed1cf8453f3f6c21e1463 +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/System.dll new file mode 100644 index 0000000000..9a1273a80f --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a44ca08afb3f6bafd76aa35c259f3d599fe34f6f49ea5118626c1c1a540b0f03 +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/TypeLib.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/TypeLib.dll new file mode 100644 index 0000000000..57bbd6ba19 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/TypeLib.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2e2921382a1e36df0cbd2bfd58dce50f8a03ba3b4b5e254f46e064d8ae7998b +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/UserInfo.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/UserInfo.dll new file mode 100644 index 0000000000..d4d09d1cd5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/UserInfo.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a7d0bebea1c3ff1a7a4ea59121bc28c44e52a32fea2086d07d8523b4b77a90c +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/VPatch.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/VPatch.dll new file mode 100644 index 0000000000..6b651eaf1d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/VPatch.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:912688edad9b8ffb79c039d4b17720464a88c88639704f235361945e70febbe1 +size 8192 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsDialogs.dll new file mode 100644 index 0000000000..9ea6338ec5 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7853be9190489ba84dae8232e9a967cec02d941732cb4137bc9ae6a392e89fb8 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsExec.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsExec.dll new file mode 100644 index 0000000000..57751f12f2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-ansi/nsExec.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20666c498941d36bfd0eae411ad73c475d043cee39b50c31734a70eecaae0bb +size 6656 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/AdvSplash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/AdvSplash.dll new file mode 100644 index 0000000000..633dbd1ed7 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/AdvSplash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8605c3d043ed6ab8a0ae5f825a9dda47f0e37974ccc0a667ac28643cece0ca5 +size 6144 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Banner.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Banner.dll new file mode 100644 index 0000000000..edd03a2315 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Banner.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42c9387cb1749bf8338d5a6e6e8f598a22997e4cb9472da8dccc75c44b48f59c +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/BgImage.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/BgImage.dll new file mode 100644 index 0000000000..b04cdbfc17 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/BgImage.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0912ab403831cb402233089c4851f5f5fdc8740207b327899896c2a639b0e9d +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Dialer.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Dialer.dll new file mode 100644 index 0000000000..165cb98da1 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Dialer.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c98057ce5874835b3b53ebdb213568363fe81261dd6d3f87fb2a8b4e3e9fa08f +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/InstallOptions.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/InstallOptions.dll new file mode 100644 index 0000000000..f12c704a45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/InstallOptions.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44b1d70219f88564d94da9fc8a7ca4d25d103575519c84a44df3057b8af98f71 +size 15872 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/LangDLL.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/LangDLL.dll new file mode 100644 index 0000000000..0a0839a298 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/LangDLL.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cf25411f28f639f72156c24b0f66ea42f5aee5973f6c137d901da6ae42d5b7e +size 5632 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Math.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Math.dll new file mode 100644 index 0000000000..4aec49c9c2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Math.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3635534e7a6a316b1d1971f6abd3ac610f883317e2691e3b90fbee215ed2a8b +size 69120 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/NSISdl.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/NSISdl.dll new file mode 100644 index 0000000000..49c70977ce --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/NSISdl.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf40229dd9d6b268902d8dea88c8a04aacf1af218dd29f6dcd35babc54ac08d +size 15360 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Splash.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Splash.dll new file mode 100644 index 0000000000..b8f565f641 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/Splash.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafe8c18223aa6de236c5d8bc1d5491a3f2f3c8a3504fa341efad875bb1c84e5 +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/StartMenu.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/StartMenu.dll new file mode 100644 index 0000000000..00a039003d --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/StartMenu.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe330320459637d8dd2b5d84d07925c38ec264152ffd3b1760a4d44d76536caa +size 7680 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/System.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/System.dll new file mode 100644 index 0000000000..c243f789cd --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/System.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b4c47c4cf5e76ec57dd5a050d5acd832a0d532ee875d7b44f6cdaf68f90d37c +size 12288 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/TypeLib.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/TypeLib.dll new file mode 100644 index 0000000000..c5648f1ca8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/TypeLib.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:560d9bbfe0ead171312e58fbb32d5ac8aabea93fc6811be1c6eefe49b21a8452 +size 3584 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/UserInfo.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/UserInfo.dll new file mode 100644 index 0000000000..197181a2f2 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/UserInfo.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0dc3112796dbaa37f25ab54b7fac2fbf791cbc6e36a84fc61c6423b84a3677b +size 4096 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/VPatch.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/VPatch.dll new file mode 100644 index 0000000000..3e12720e71 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/VPatch.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcb976e78efe58e8e5190e7bcc0c2c425aec2526f5ae2be5a29fba94f0b7321f +size 8704 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsDialogs.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsDialogs.dll new file mode 100644 index 0000000000..f59438bb45 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsDialogs.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1350f487692057c8ffde75dcc55287a52a3272240d4d4912f24464b27551fc0 +size 9728 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsExec.dll b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsExec.dll new file mode 100644 index 0000000000..99ec5141e8 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Plugins/x86-unicode/nsExec.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b121689861b506dbc9c3797b49bc8a90d555cb7db58cb959165cc758391c00bb +size 7168 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-ansi new file mode 100644 index 0000000000..106ccd281e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e411c6ad6c4ef84207af143048c4c5d3d717b807cd3e016b6cbd0580651d0bb +size 37888 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-unicode new file mode 100644 index 0000000000..d3cce8d899 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f858e22d841ac5805a601552aeed24b26c596174d59b593745f4fbdd090420ab +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-ansi new file mode 100644 index 0000000000..0ed87a958b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:802681be2acefd2c2a6e810c49201e23de541c80d9b745aab206450d9e8c7178 +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-unicode new file mode 100644 index 0000000000..b15503a1a6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/bzip2_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec69630d3b5faa18a97dd6679c4d1af88ff00786920e36d654ea142fd410147c +size 39424 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-ansi new file mode 100644 index 0000000000..e3e16f4368 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f44b3d3d7780c6cb3a6b8347afc3ab58f46a5a99e7a3120f61a3692c2b8eea2 +size 37376 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-unicode new file mode 100644 index 0000000000..ec9fcb5409 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e916a205c5421f4287411d402fe1d2cb37e3df93db00ff4cfbacec3b8ec8877e +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-ansi new file mode 100644 index 0000000000..8ef7c11eff --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71c09439fce137e5f1673daa8d5e475a17e26cbf1502075cf66deb56101f46bc +size 38400 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-unicode new file mode 100644 index 0000000000..a7aef137ab --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/lzma_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0d065b62d34be5f0aaaf7c162e101a5e25d7cd3eb10a13fdb37f91b02ebfce2 +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/uninst b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/uninst new file mode 100644 index 0000000000..b50ef84d75 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/uninst @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba82bb5d90262417a18cec6631bbd8b880020eb159b45f264a9145196dfb8f3a +size 766 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-ansi new file mode 100644 index 0000000000..2c479f5be6 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08e4a2dc53cf12ed5bf6697f570443d926f2343c0af725a3a6c959b90bc5f63e +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-unicode new file mode 100644 index 0000000000..b90986e73e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01621a30a5676e79494394514861f645cb2c19536edab35275f8012e4246e3b6 +size 39936 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-ansi b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-ansi new file mode 100644 index 0000000000..b730a3620b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-ansi @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb28945f6478dca9c9d4650da66305550ce70a8bb75ff31d34fe644a5ef51540 +size 38912 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-unicode b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-unicode new file mode 100644 index 0000000000..c0d380f4f9 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/Stubs/zlib_solid-x86-unicode @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6c2afdd03c7bc5f1dc24449e5c92f3859f7586f399dff01c175d52e052bc943 +size 40960 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensis.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensis.exe new file mode 100644 index 0000000000..56402b6854 --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensis.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f497e92deb9f179f7b8f7553fcb3bd04f511bb2949e5e4a2aee80a10f7b20431 +size 2560 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensisw.exe b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensisw.exe new file mode 100644 index 0000000000..0326d4709e --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/makensisw.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1c77f0b4615ec5293be7f19f811e7fc907d36ef907658f4cc84f63ca77572f7 +size 1139200 diff --git a/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/nsisconf.nsh b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/nsisconf.nsh new file mode 100644 index 0000000000..db95ef2d0b --- /dev/null +++ b/tests/integration/executable/pe/__output__/nsis-3.11-setup.exe_extract/nsisconf.nsh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52ac64dc88816b74e8285c0b275c951df45ba6e57d35a1d5f59ad124d0eeda22 +size 1726 diff --git a/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/0-16.padding b/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/0-16.padding new file mode 100644 index 0000000000..a2c372b2fe --- /dev/null +++ b/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/0-16.padding @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:374708fff7719dd5979ec875d56cd2286f6d3cf7ec317a3b25632aab28ec37bb +size 16 diff --git a/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/16-23072.pe b/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/16-23072.pe new file mode 100644 index 0000000000..fd1d79ca16 --- /dev/null +++ b/tests/integration/executable/pe/__output__/zip2exe.exe.padded_extract/16-23072.pe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641a1d6c86e71af010a44fb09270d2f4a3af4ba35954f330403c61503e233c6f +size 23056