]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
update aarch64 test to xenial 1469/head
authorYann Collet <cyan@fb.com>
Fri, 21 Dec 2018 23:08:48 +0000 (15:08 -0800)
committerYann Collet <cyan@fb.com>
Fri, 21 Dec 2018 23:08:48 +0000 (15:08 -0800)
in an attempt to circumvent the `ld` bug

.travis.yml
lib/compress/fse_compress.c

index e9f9184816752134402e62dffccbc4a800009c7a..a7454ae45a3b0a5d5ea55c7284e6a66a15aa9ada 100644 (file)
@@ -115,14 +115,18 @@ matrix:
       script:
         - make arminstall
         - make armfuzz
-    - name: Trusty (AARCH64 + Fuzz Test)
+
+    - name: Xenial (AARCH64 + Fuzz Test)
+      dist: xenial
       script:
         - make arminstall
         - make aarch64fuzz
+
     - name: Trusty (PPC + Fuzz Test)
       script:
         - make ppcinstall
         - make ppcfuzz
+
     - name: Trusty (PPC64 + Fuzz Test)
       script:
         - make ppcinstall
index 2a8197fd323da95cc3cc9e85e22c1d4014d7bffe..b557ab4b0c852ee2396473af2566c864ca5ec747 100644 (file)
@@ -115,7 +115,7 @@ size_t FSE_buildCTable_wksp(FSE_CTable* ct,
     /* symbol start positions */
     {   U32 u;
         cumul[0] = 0;
-        for (u=1; u<=maxSymbolValue+1; u++) {
+        for (u=1; u <= maxSymbolValue+1; u++) {
             if (normalizedCounter[u-1]==-1) {  /* Low proba symbol */
                 cumul[u] = cumul[u-1] + 1;
                 tableSymbol[highThreshold--] = (FSE_FUNCTION_TYPE)(u-1);