.travis.yml: tests merged together
This commit is contained in:
parent
4f270ac851
commit
0079425297
27
.travis.yml
27
.travis.yml
@ -6,25 +6,16 @@ matrix:
|
|||||||
# Container-based Ubuntu 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
|
# Container-based Ubuntu 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make travis-install"
|
env: PLATFORM="Ubuntu 12.04 container" CMD="make test && make clean && make travis-install"
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make cmaketest"
|
env: PLATFORM="Ubuntu 12.04 container" CMD="make -C programs test-zstd_nolegacy && make clean && make zlibwrapper && make clean && make cmaketest"
|
||||||
- os: linux
|
|
||||||
sudo: false
|
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make test"
|
|
||||||
- os: linux
|
|
||||||
sudo: false
|
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make -C programs test-zstd_nolegacy"
|
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make usan"
|
env: PLATFORM="Ubuntu 12.04 container" CMD="make usan"
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: false
|
sudo: false
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make asan"
|
env: PLATFORM="Ubuntu 12.04 container" CMD="make asan"
|
||||||
- os: linux
|
|
||||||
sudo: false
|
|
||||||
env: PLATFORM="Ubuntu 12.04 container" CMD="make zlibwrapper"
|
|
||||||
# Standard Ubuntu 12.04 LTS Server Edition 64 bit
|
# Standard Ubuntu 12.04 LTS Server Edition 64 bit
|
||||||
- os: linux
|
- os: linux
|
||||||
sudo: required
|
sudo: required
|
||||||
@ -48,19 +39,7 @@ matrix:
|
|||||||
- os: linux
|
- os: linux
|
||||||
dist: trusty
|
dist: trusty
|
||||||
sudo: required
|
sudo: required
|
||||||
env: PLATFORM="Ubuntu 14.04" CMD="make gcc5install gcc5test"
|
env: PLATFORM="Ubuntu 14.04" CMD="make zlibwrapper && make clean && make gcc5install gcc5test && make clean && make gcc6install gcc6test && make clean && make ppcinstall ppctest"
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
env: PLATFORM="Ubuntu 14.04" CMD="make gcc6install gcc6test"
|
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
env: PLATFORM="Ubuntu 14.04" CMD="make ppcinstall ppctest"
|
|
||||||
- os: linux
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
|
||||||
env: PLATFORM="Ubuntu 14.04" CMD="make zlibwrapper"
|
|
||||||
# OS X Mavericks
|
# OS X Mavericks
|
||||||
- os: osx
|
- os: osx
|
||||||
env: PLATFORM="OS X Mavericks" CMD="make gnu90test && make clean && make test && make clean && make travis-install"
|
env: PLATFORM="OS X Mavericks" CMD="make gnu90test && make clean && make test && make clean && make travis-install"
|
||||||
|
@ -403,8 +403,8 @@ in order to properly allocate destination buffer.
|
|||||||
See [`Data_Block`](#the-structure-of-data_block) for more details.
|
See [`Data_Block`](#the-structure-of-data_block) for more details.
|
||||||
|
|
||||||
A compressed block consists of 2 sections :
|
A compressed block consists of 2 sections :
|
||||||
- [Literals_Section](#literals_section)
|
- [`Literals_Section`](#literals_section)
|
||||||
- [Sequences_Section](#sequences_section)
|
- [`Sequences_Section`](#sequences_section)
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
To decode a compressed block, the following elements are necessary :
|
To decode a compressed block, the following elements are necessary :
|
||||||
@ -504,7 +504,7 @@ __`Size_Format` for `Compressed_Literals_Block` and `Repeat_Stats_Literals_Block
|
|||||||
|
|
||||||
#### `Huffman_Tree_Description`
|
#### `Huffman_Tree_Description`
|
||||||
|
|
||||||
This section is only present when literals block type is `Compressed_Block` (`2`).
|
This section is only present when `Literals_Block_Type` type is `Compressed_Block` (`2`).
|
||||||
|
|
||||||
Prefix coding represents symbols from an a priori known alphabet
|
Prefix coding represents symbols from an a priori known alphabet
|
||||||
by bit sequences (codewords), one codeword for each symbol,
|
by bit sequences (codewords), one codeword for each symbol,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user