]> git.ipfire.org Git - thirdparty/zstd.git/log
thirdparty/zstd.git
5 years agoAdd Tool to Diagnose Whether Corrupt Blobs are Plausibly Bit-Flips 1893/head
W. Felix Handte [Tue, 19 Nov 2019 06:21:53 +0000 (01:21 -0500)] 
Add Tool to Diagnose Whether Corrupt Blobs are Plausibly Bit-Flips

I spend an increasing amount of my time looking at "Corrupted block detected"
failures in decompression. Not infrequently, I suspect that it is the result
of hardware failure, and that the blob has become bit-flipped or otherwise
corrupted somewhere along the line.

For that reason I was motivated to write a little tool to inspect blobs that
fail to decompress, to try modifying them, and then check whether they
decompress successfully. This seems like potentially a generally useful tool,
so I figured it might be worth putting in `contrib/`.

5 years agoMerge pull request #1866 from legrosbuffle/dev
Nick Terrell [Tue, 19 Nov 2019 00:16:30 +0000 (16:16 -0800)] 
Merge pull request #1866 from legrosbuffle/dev

Optimized loop bounds to allow the compiler to unroll the loop.

5 years agoMerge pull request #1888 from senhuang42/superblocks_fixed
Nick Terrell [Tue, 19 Nov 2019 00:09:33 +0000 (16:09 -0800)] 
Merge pull request #1888 from senhuang42/superblocks_fixed

RLE test and re-enable RLE in main compression loop

5 years agoMerge pull request #1889 from vtorri/dev
Nick Terrell [Tue, 19 Nov 2019 00:07:28 +0000 (16:07 -0800)] 
Merge pull request #1889 from vtorri/dev

shared library: rename import library with .dll.a extension

5 years agoNo margin on RLE test size check 1888/head
Sen Huang [Mon, 18 Nov 2019 21:39:16 +0000 (16:39 -0500)] 
No margin on RLE test size check

5 years agoUpdated comment to reflect actual compression behavior
Sen Huang [Fri, 15 Nov 2019 19:57:44 +0000 (14:57 -0500)] 
Updated comment to reflect actual compression behavior

5 years agoshared library: rename import library with .dll.a extension 1889/head
Vincent Torri [Fri, 15 Nov 2019 18:46:06 +0000 (19:46 +0100)] 
shared library: rename import library with .dll.a extension

mort of open source project are using this extension for the import library.
The Win32 linker is supporting this extension, see
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/4/html/Using_ld_the_GNU_Linker/win32.html
section "direct linking to a dll"

5 years agoMerge remote-tracking branch 'upstream/master' into dev
Vincent Torri [Fri, 15 Nov 2019 18:37:15 +0000 (19:37 +0100)] 
Merge remote-tracking branch 'upstream/master' into dev

5 years agoModified existing RLE test to take compressed size into account
Sen Huang [Fri, 15 Nov 2019 17:26:48 +0000 (12:26 -0500)] 
Modified existing RLE test to take compressed size into account

5 years agoOptimized loop bounds to allow the compiler to unroll the loop. 1866/head
Clement Courbet [Tue, 5 Nov 2019 13:14:02 +0000 (14:14 +0100)] 
Optimized loop bounds to allow the compiler to unroll the loop.

This has no measurable impact on large files but improves small file
decompression by ~1-2% for 10kB, benchmarked with:

head -c 10000 silesia.tar > /tmp/test
make CC=/usr/local/bin/clang-9 BUILD_STATIC=1 && ./lzbench -ezstd -t1,5 /tmp/test

5 years agoFixed main compression logic changes
Sen Huang [Fri, 15 Nov 2019 00:39:09 +0000 (19:39 -0500)] 
Fixed main compression logic changes

5 years agoMerge pull request #1868 from senhuang42/superblocks_fixed
Yann Collet [Thu, 14 Nov 2019 21:31:34 +0000 (13:31 -0800)] 
Merge pull request #1868 from senhuang42/superblocks_fixed

Superblocks rebased for merge

5 years agoChange superblock #include to be last 1868/head
Sen Huang [Thu, 14 Nov 2019 18:12:17 +0000 (13:12 -0500)] 
Change superblock #include to be last

5 years agoMerge pull request #1858 from senhuang42/dictionary_header_size
Yann Collet [Thu, 14 Nov 2019 17:44:07 +0000 (09:44 -0800)] 
Merge pull request #1858 from senhuang42/dictionary_header_size

Method to get dictionary header size

5 years agoMerge pull request #1884 from facebook/specMBS
Yann Collet [Thu, 14 Nov 2019 17:32:07 +0000 (09:32 -0800)] 
Merge pull request #1884 from facebook/specMBS

Specs. clarifications for Block_Maximum_Size

5 years agoclarifications for Block_Maximum_Size 1884/head
Yann Collet [Wed, 13 Nov 2019 17:50:15 +0000 (09:50 -0800)] 
clarifications for Block_Maximum_Size

as a follow up of #1882

5 years agoMerge pull request #1875 from ryandesign/c89
Yann Collet [Mon, 11 Nov 2019 19:00:10 +0000 (11:00 -0800)] 
Merge pull request #1875 from ryandesign/c89

Change c90 to c89

5 years agoMerge pull request #1874 from terrelln/adjust-fix
Nick Terrell [Fri, 8 Nov 2019 18:57:59 +0000 (10:57 -0800)] 
Merge pull request #1874 from terrelln/adjust-fix

Fix parameter selection and adjustment with srcSize == 0

5 years agoRemove mixed declarations 1858/head
Sen Huang [Fri, 8 Nov 2019 16:20:57 +0000 (11:20 -0500)] 
Remove mixed declarations

5 years agoFix static analyze error, use proper bounds for dictEnd
Sen Huang [Thu, 7 Nov 2019 21:24:55 +0000 (16:24 -0500)] 
Fix static analyze error, use proper bounds for dictEnd

5 years agoMove asserts to loadZstdDictionary()
Sen Huang [Thu, 7 Nov 2019 19:08:55 +0000 (14:08 -0500)] 
Move asserts to loadZstdDictionary()

5 years agoExpose ZSTD_reset_compressedBlockState() to shared API
Sen Huang [Thu, 7 Nov 2019 19:07:21 +0000 (14:07 -0500)] 
Expose ZSTD_reset_compressedBlockState() to shared API

5 years agoAdd error forwarding to loadCEntropy(), make check for dictSize >= 8 from bad merge
Sen Huang [Thu, 7 Nov 2019 18:58:35 +0000 (13:58 -0500)] 
Add error forwarding to loadCEntropy(), make check for dictSize >= 8 from bad merge

5 years agoRemove redundant comment
Sen Huang [Thu, 7 Nov 2019 16:47:47 +0000 (11:47 -0500)] 
Remove redundant comment

5 years agoUse ZSTD Error codes, improve explanation of ZSTD_loadCEntropy() and ZSTD_loadDEntropy()
Sen Huang [Thu, 7 Nov 2019 16:46:25 +0000 (11:46 -0500)] 
Use ZSTD Error codes, improve explanation of ZSTD_loadCEntropy() and ZSTD_loadDEntropy()

5 years agoIntegrated refactor into getDictHeaderSize, now passes tests
Sen Huang [Thu, 7 Nov 2019 16:32:08 +0000 (11:32 -0500)] 
Integrated refactor into getDictHeaderSize, now passes tests

5 years agoFirst working pass at refactor of loadZstdDictionary()
Sen Huang [Thu, 7 Nov 2019 15:43:43 +0000 (10:43 -0500)] 
First working pass at refactor of loadZstdDictionary()

5 years agoRevert "Move decompress symbols into zstd_internal.h, remove dependency"
Sen Huang [Thu, 7 Nov 2019 14:29:15 +0000 (09:29 -0500)] 
Revert "Move decompress symbols into zstd_internal.h, remove dependency"

This reverts commit a152b4c67a5266f611db4a2eac4a79003852a795.

5 years agoMove decompress symbols into zstd_internal.h, remove dependency
Sen Huang [Tue, 5 Nov 2019 20:07:07 +0000 (15:07 -0500)] 
Move decompress symbols into zstd_internal.h, remove dependency

5 years agoChecks malloc() for failure, returns 0 if so
Sen Huang [Mon, 4 Nov 2019 21:13:52 +0000 (16:13 -0500)] 
Checks malloc() for failure, returns 0 if so

5 years agoChange to heap allocation, remove implicit type conversion
Sen Huang [Mon, 4 Nov 2019 19:33:52 +0000 (14:33 -0500)] 
Change to heap allocation, remove implicit type conversion

5 years agoAdded 2 unit tests: one for sanity, one for correctnesson fixed dict
Sen Huang [Sun, 3 Nov 2019 22:44:28 +0000 (17:44 -0500)] 
Added 2 unit tests: one for sanity, one for correctnesson fixed dict

5 years agoAdd ZDICT_getHeaderSize()
Sen Huang [Tue, 29 Oct 2019 20:45:11 +0000 (16:45 -0400)] 
Add ZDICT_getHeaderSize()

5 years agoChange c90 to c89 1875/head
Ryan Schmidt [Thu, 7 Nov 2019 17:01:13 +0000 (11:01 -0600)] 
Change c90 to c89

c89 and c90 are the same language. Old compilers like gcc 4.2.1 don't
know the c90 alias.

5 years agoFix parameter selection and adjustment with srcSize == 0 1874/head
Nick Terrell [Thu, 7 Nov 2019 01:41:29 +0000 (17:41 -0800)] 
Fix parameter selection and adjustment with srcSize == 0

5 years agoadded target zstd-dictBuilder
Yann Collet [Wed, 6 Nov 2019 23:46:58 +0000 (15:46 -0800)] 
added target zstd-dictBuilder

check that the dictBuilder can be compiled
with only lib/common and lib/compress as dependencies.

5 years agoMerge pull request #1873 from felixhandte/make-overlap-log-multithread-only
Felix Handte [Wed, 6 Nov 2019 21:56:37 +0000 (16:56 -0500)] 
Merge pull request #1873 from felixhandte/make-overlap-log-multithread-only

Fix #1861: Restrict overlapLog Parameter When Not Built With Multithreading

5 years agoMerge pull request #1843 from moozzyk/issue-1637
Felix Handte [Wed, 6 Nov 2019 21:56:14 +0000 (16:56 -0500)] 
Merge pull request #1843 from moozzyk/issue-1637

Take ZSTD_parameters as a const pointer

5 years agoMerge pull request #1869 from bket/openbsd
Felix Handte [Wed, 6 Nov 2019 21:54:03 +0000 (16:54 -0500)] 
Merge pull request #1869 from bket/openbsd

'head -c BYTES' is non-portable.

5 years agoMerge pull request #1870 from bket/portable
Felix Handte [Wed, 6 Nov 2019 21:52:24 +0000 (16:52 -0500)] 
Merge pull request #1870 from bket/portable

'date -r FILE' is non-portable.

5 years agoFix #1861: Restrict overlapLog Parameter When Not Built With Multithreading 1873/head
W. Felix Handte [Wed, 6 Nov 2019 21:05:02 +0000 (16:05 -0500)] 
Fix #1861: Restrict overlapLog Parameter When Not Built With Multithreading

This parameter is unused in single-threaded compression. We should make it
behave like the other multithread-only parameters, for which we only accept
zero when we are not built with multithreading.

5 years ago'date -r FILE' is non-portable. 1870/head
Björn Ketelaars [Wed, 6 Nov 2019 11:16:02 +0000 (12:16 +0100)] 
'date -r FILE' is non-portable.

date(1) is used to display the last modification time of a file, which
is not supported on OpenBSD, FreeBSD and Darwin. Instead use stat(1).

Tested on OpenBSD.

5 years ago'head -c BYTES' is non-portable. 1869/head
Björn Ketelaars [Wed, 6 Nov 2019 10:39:59 +0000 (11:39 +0100)] 
'head -c BYTES' is non-portable.

Similar to #1321: The '-c' option for 'head' is non-portable (not in
POSIX).

5 years agoFix FUZZ_rand32() bug
Sen Huang [Tue, 5 Nov 2019 21:43:24 +0000 (16:43 -0500)] 
Fix FUZZ_rand32() bug

5 years agoFix frame argument to compression
Sen Huang [Tue, 5 Nov 2019 21:15:55 +0000 (16:15 -0500)] 
Fix frame argument to compression

5 years agoFix more merge conflicts
Sen Huang [Tue, 5 Nov 2019 20:54:05 +0000 (15:54 -0500)] 
Fix more merge conflicts

5 years agoFix merge conflicts
Sen Huang [Tue, 5 Nov 2019 20:51:25 +0000 (15:51 -0500)] 
Fix merge conflicts

5 years agoMerge pull request #1867 from bimbashrestha/dict_load_fuzz_err
Yann Collet [Tue, 5 Nov 2019 20:24:54 +0000 (12:24 -0800)] 
Merge pull request #1867 from bimbashrestha/dict_load_fuzz_err

[clean up] Replacing some literals with constants in zstd_compress_literals.c

5 years agoReplacing some literals with constants 1867/head
Bimba Shrestha [Tue, 5 Nov 2019 18:26:57 +0000 (10:26 -0800)] 
Replacing some literals with constants

5 years agoMerge pull request #15 from facebook/dev
Bimba Shrestha [Mon, 4 Nov 2019 19:23:44 +0000 (11:23 -0800)] 
Merge pull request #15 from facebook/dev

Merging facebook/dev into bimbashrestha/dev

5 years agoupdate table benchmark with zstd v1.4.4
Yann Collet [Mon, 4 Nov 2019 18:59:59 +0000 (10:59 -0800)] 
update table benchmark with zstd v1.4.4

5 years agoMerge pull request #1865 from facebook/dev v1.4.4
Yann Collet [Mon, 4 Nov 2019 17:54:32 +0000 (09:54 -0800)] 
Merge pull request #1865 from facebook/dev

fix dictionary edge case

5 years agoMerge pull request #1864 from terrelln/dict-fix 1865/head
Nick Terrell [Sat, 2 Nov 2019 03:01:12 +0000 (20:01 -0700)] 
Merge pull request #1864 from terrelln/dict-fix

Fix 2 bugs in dictionary loading

5 years agoFix 2 bugs in dictionary loading 1864/head
Nick Terrell [Fri, 1 Nov 2019 22:33:39 +0000 (15:33 -0700)] 
Fix 2 bugs in dictionary loading

* Silently skip dictionaries less than 8 bytes, unless using `ZSTD_dct_fullDict`.
  This changes the compressor, which silently skips dictionaries <= 8 bytes.
* Allow repcodes that are equal to the dictionary content size, since it is in bounds.

5 years ago[fuzz] Add dictionary_loader fuzzer
Nick Terrell [Fri, 1 Nov 2019 22:16:24 +0000 (15:16 -0700)] 
[fuzz] Add dictionary_loader fuzzer

* Adds the fuzzer
* Adds an additional `InputType` for the fuzzer

I ran the fuzzer for about 10 minutes and it found 2 bugs:

* Catches the original bug without any help
* Catches an additional bug with 8-byte dictionaries

5 years agoMerge pull request #1859 from facebook/dev
Yann Collet [Thu, 31 Oct 2019 22:02:55 +0000 (15:02 -0700)] 
Merge pull request #1859 from facebook/dev

v1.4.4

5 years agofixed zlibwrapper build script 1859/head
Yann Collet [Thu, 31 Oct 2019 17:47:06 +0000 (10:47 -0700)] 
fixed zlibwrapper build script

5 years agoMerge pull request #1860 from senhuang42/streaming_compression_using_cdict
Yann Collet [Wed, 30 Oct 2019 23:27:58 +0000 (16:27 -0700)] 
Merge pull request #1860 from senhuang42/streaming_compression_using_cdict

Disable reloading dictionary when there is no known srcSize

5 years agoMake sure contentsize is known 1860/head
Sen Huang [Wed, 30 Oct 2019 20:03:58 +0000 (16:03 -0400)] 
Make sure contentsize is known

5 years agoMerge pull request #1857 from 0x123456789A/link-shared
Felix Handte [Wed, 30 Oct 2019 19:43:11 +0000 (15:43 -0400)] 
Merge pull request #1857 from 0x123456789A/link-shared

Add CMake flag for linking programs dynamically

5 years agoMerge pull request #1850 from bimbashrestha/named_pipes
Yann Collet [Wed, 30 Oct 2019 19:18:58 +0000 (12:18 -0700)] 
Merge pull request #1850 from bimbashrestha/named_pipes

Gating named pipe support on windows

5 years agoupdated CHANGELOG for v1.4.4
Yann Collet [Wed, 30 Oct 2019 19:16:45 +0000 (12:16 -0700)] 
updated CHANGELOG for v1.4.4

5 years agoMerge pull request #1855 from shashank0791/shtavi-filter-precompressed-files
Yann Collet [Wed, 30 Oct 2019 19:14:41 +0000 (12:14 -0700)] 
Merge pull request #1855 from shashank0791/shtavi-filter-precompressed-files

Added "--exclude-compressed" flag feature

5 years agoRemoved the optimization check 1855/head
Shashank Tavildar [Tue, 29 Oct 2019 22:59:20 +0000 (15:59 -0700)] 
Removed the optimization check

5 years agoChanged extension comparision logic, added new test cases
Shashank Tavildar [Tue, 29 Oct 2019 20:36:09 +0000 (13:36 -0700)] 
Changed extension comparision logic, added new test cases

5 years agoAdded check to perform comparison only if extension is present
Shashank Tavildar [Tue, 29 Oct 2019 19:56:04 +0000 (12:56 -0700)] 
Added check to perform comparison only if extension is present

5 years agoCreated utility function to extract extension from filename, fixed tests
Shashank Tavildar [Tue, 29 Oct 2019 19:27:54 +0000 (12:27 -0700)] 
Created utility function to extract extension from filename, fixed tests

5 years agoDeleting test directory before creation to pass travis-ci test
Shashank Tavildar [Tue, 29 Oct 2019 16:54:54 +0000 (09:54 -0700)] 
Deleting test directory before creation to pass travis-ci test

5 years agoMerge branch 'named_pipes' of https://github.com/bimbashrestha/zstd into named_pipes 1850/head
Bimba Shrestha [Tue, 29 Oct 2019 16:46:28 +0000 (09:46 -0700)] 
Merge branch 'named_pipes' of https://github.com/bimbashrestha/zstd into named_pipes

5 years agoRemoving merge side effect
Bimba Shrestha [Tue, 29 Oct 2019 16:45:28 +0000 (09:45 -0700)] 
Removing merge side effect

5 years agoFixed check for building programs statically 1857/head
0x123456789A [Tue, 29 Oct 2019 13:41:32 +0000 (14:41 +0100)] 
Fixed check for building programs statically

5 years agoConsider ZSTD_PROGRAMS_LINK_SHARED
0x123456789A [Tue, 29 Oct 2019 13:33:50 +0000 (14:33 +0100)] 
Consider ZSTD_PROGRAMS_LINK_SHARED

Actually consider ZSTD_PROGRAMS_LINK_SHARED in programs CMakeLists

5 years agoIntroduce ZSTD_PROGRAMS_LINK_SHARED
0x123456789A [Tue, 29 Oct 2019 13:31:02 +0000 (14:31 +0100)] 
Introduce ZSTD_PROGRAMS_LINK_SHARED

The CMake variable ZSTD_PROGRAMS_LINK_SHARED indicactes wether or not to link the zstd programs dynamically or statically.

5 years agoMinor fixes in test
Shashank Tavildar [Tue, 29 Oct 2019 05:24:01 +0000 (22:24 -0700)] 
Minor fixes in test

5 years agoMerge branch 'dev' into named_pipes
Bimba Shrestha [Tue, 29 Oct 2019 05:17:13 +0000 (01:17 -0400)] 
Merge branch 'dev' into named_pipes

5 years agoRemoving Visual08 and Visual10 tests
Bimba Shrestha [Tue, 29 Oct 2019 05:09:34 +0000 (22:09 -0700)] 
Removing Visual08 and Visual10 tests

5 years agoMerge pull request #1856 from terrelln/assert-fix
Nick Terrell [Tue, 29 Oct 2019 04:44:22 +0000 (21:44 -0700)] 
Merge pull request #1856 from terrelln/assert-fix

Fix assert in ZSTD_safecopy

5 years agoAddressing comments, removing cyclic dependency with header file, updating tests
Shashank Tavildar [Tue, 29 Oct 2019 01:21:47 +0000 (18:21 -0700)] 
Addressing comments, removing cyclic dependency with header file, updating tests

5 years agoFix assert in ZSTD_safecopy 1856/head
Nick Terrell [Tue, 29 Oct 2019 00:51:17 +0000 (17:51 -0700)] 
Fix assert in ZSTD_safecopy

In the case that `op >= oend_w` it is possible that `diff < 8` because
the two buffers could be adjacent.

Credit to OSS-Fuzz, which found the bug. It isn't reproducible because
it depends on the memory layout.

5 years agoFixing tests and moving flag to advanced usage 1852/head
Shashank Tavildar [Mon, 28 Oct 2019 22:22:26 +0000 (15:22 -0700)] 
Fixing tests and moving flag to advanced usage

5 years agoResolving local merge conflicts
Shashank Tavildar [Mon, 28 Oct 2019 22:15:13 +0000 (15:15 -0700)] 
Resolving local merge conflicts

5 years agoAddressing comments: -Created a list of extensions defined in fileio.h, -Updated...
Shashank Tavildar [Mon, 28 Oct 2019 21:54:54 +0000 (14:54 -0700)] 
Addressing comments: -Created a list of extensions defined in fileio.h, -Updated test

5 years agoAdded --exclude-compressed flag feature that skips compression of precompressed files
Shashank Tavildar [Fri, 25 Oct 2019 22:49:11 +0000 (15:49 -0700)] 
Added --exclude-compressed flag feature that skips compression of precompressed files

5 years agoMerge branch 'dev' of github.com:facebook/zstd into dev
Yann Collet [Mon, 28 Oct 2019 19:57:23 +0000 (12:57 -0700)] 
Merge branch 'dev' of github.com:facebook/zstd into dev

5 years agoupdated CHANGELOG for v1.4.4
Yann Collet [Mon, 28 Oct 2019 19:57:05 +0000 (12:57 -0700)] 
updated CHANGELOG for v1.4.4

5 years agoMerge pull request #1851 from felixhandte/pkg-config-prefix-fix
Felix Handte [Mon, 28 Oct 2019 18:24:56 +0000 (14:24 -0400)] 
Merge pull request #1851 from felixhandte/pkg-config-prefix-fix

In pkg-config File, Derive Lib and Include Dir from Prefix at Use-Time

5 years agoupdated API inline doc and manual
Yann Collet [Mon, 28 Oct 2019 18:15:41 +0000 (11:15 -0700)] 
updated API inline doc and manual

regarding ZSTD_CDict created without a dictBuffer.

5 years agoMerge pull request #1848 from felixhandte/tzst-ext-tmp
Yann Collet [Mon, 28 Oct 2019 17:08:20 +0000 (10:08 -0700)] 
Merge pull request #1848 from felixhandte/tzst-ext-tmp

Support Decompressing Short Tar Extensions

5 years agoMerge pull request #1847 from facebook/zlibwrap_visual
Yann Collet [Sat, 26 Oct 2019 00:42:42 +0000 (17:42 -0700)] 
Merge pull request #1847 from facebook/zlibwrap_visual

fix zlibWrapper for Visual Studio

5 years agoAdded --exclude-compressed flag feature that skips compression of precompressed files
Shashank Tavildar [Fri, 25 Oct 2019 22:49:11 +0000 (15:49 -0700)] 
Added --exclude-compressed flag feature that skips compression of precompressed files

5 years agoMerge branch 'master' of https://github.com/bimbashrestha/zstd into named_pipes
Bimba Shrestha [Fri, 25 Oct 2019 22:43:41 +0000 (15:43 -0700)] 
Merge branch 'master' of https://github.com/bimbashrestha/zstd into named_pipes

5 years agoGating named pipe support in hedaer file
Bimba Shrestha [Fri, 25 Oct 2019 22:15:28 +0000 (15:15 -0700)] 
Gating named pipe support in hedaer file

5 years agoCleaning up gate and adding comment to flag
Bimba Shrestha [Fri, 25 Oct 2019 21:06:50 +0000 (14:06 -0700)] 
Cleaning up gate and adding comment to flag

5 years agoIn pkg-config File, Derive Lib and Include Dir from Prefix at Use-Time 1851/head
W. Felix Handte [Fri, 25 Oct 2019 19:05:20 +0000 (15:05 -0400)] 
In pkg-config File, Derive Lib and Include Dir from Prefix at Use-Time

Addresses #1794. Instead of deriving the lib dir and include dir at
build-time, let's do it like everyone else does at pkg-config run-time.

This has the disadvantage that we can no longer override LIBDIR and
INCLUDEDIR in the Makefile and have that reflected in the .pc file.

5 years agoMerge pull request #8 from bimbashrestha/appveyorTest
Bimba Shrestha [Fri, 25 Oct 2019 19:07:05 +0000 (12:07 -0700)] 
Merge pull request #8 from bimbashrestha/appveyorTest

Appveyor test

5 years agoRunning playtests.sh on PRs too
Bimba Shrestha [Fri, 25 Oct 2019 19:04:54 +0000 (12:04 -0700)] 
Running playtests.sh on PRs too

5 years agoGating named file support on windows
Bimba Shrestha [Fri, 25 Oct 2019 18:32:38 +0000 (11:32 -0700)] 
Gating named file support on windows

5 years agoMinor Fixes 1848/head
W. Felix Handte [Fri, 25 Oct 2019 17:58:58 +0000 (13:58 -0400)] 
Minor Fixes

5 years agoMerge pull request #1845 from facebook/zbuff
Yann Collet [Fri, 25 Oct 2019 16:59:00 +0000 (09:59 -0700)] 
Merge pull request #1845 from facebook/zbuff

improve deprecation warning macro

5 years agoAdd Tests
W. Felix Handte [Fri, 25 Oct 2019 00:19:10 +0000 (20:19 -0400)] 
Add Tests