mirror of
				https://github.com/facebook/zstd.git
				synced 2025-11-03 20:33:11 +03:00 
			
		
		
		
	.travis.yml: tests merged together
This commit is contained in:
		
							
								
								
									
										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)
 | 
			
		||||
    - os: linux
 | 
			
		||||
      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
 | 
			
		||||
      sudo: false
 | 
			
		||||
      env: PLATFORM="Ubuntu 12.04 container" CMD="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"
 | 
			
		||||
      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 usan"
 | 
			
		||||
    - os: linux
 | 
			
		||||
      sudo: false
 | 
			
		||||
      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
 | 
			
		||||
    - os: linux
 | 
			
		||||
      sudo: required
 | 
			
		||||
@@ -48,19 +39,7 @@ matrix:
 | 
			
		||||
    - os: linux
 | 
			
		||||
      dist: trusty
 | 
			
		||||
      sudo: required
 | 
			
		||||
      env: PLATFORM="Ubuntu 14.04" CMD="make gcc5install gcc5test"
 | 
			
		||||
    - 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"
 | 
			
		||||
      env: PLATFORM="Ubuntu 14.04" CMD="make zlibwrapper && make clean && make gcc5install gcc5test && make clean && make gcc6install gcc6test && make clean && make ppcinstall ppctest"
 | 
			
		||||
    # OS X Mavericks
 | 
			
		||||
    - os: osx
 | 
			
		||||
      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.
 | 
			
		||||
 | 
			
		||||
A compressed block consists of 2 sections :
 | 
			
		||||
- [Literals_Section](#literals_section)
 | 
			
		||||
- [Sequences_Section](#sequences_section)
 | 
			
		||||
- [`Literals_Section`](#literals_section)
 | 
			
		||||
- [`Sequences_Section`](#sequences_section)
 | 
			
		||||
 | 
			
		||||
### Prerequisites
 | 
			
		||||
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`
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
by bit sequences (codewords), one codeword for each symbol,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user