]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
appveyor.yml: added tests of fullbench-dll fullbench-lib
authorPrzemyslaw Skibinski <inikep@gmail.com>
Thu, 15 Dec 2016 11:09:23 +0000 (12:09 +0100)
committerPrzemyslaw Skibinski <inikep@gmail.com>
Thu, 15 Dec 2016 11:09:23 +0000 (12:09 +0100)
.travis.yml
appveyor.yml
lib/zstd.h

index c2817c48edd91d66ce8570547902c01d9bf0178a..148a98f1ba0bb903b4bd1249cc65549be1afdfea 100644 (file)
@@ -8,7 +8,7 @@ matrix:
 
 
     # Container-based Ubuntu 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
-    - env: Ubu=12.04cont Cmd="make test && make clean && make travis-install && make -C tests fullbench-dll fullbench-lib"
+    - env: Ubu=12.04cont Cmd="make test && make clean && make travis-install"
       os: linux
       sudo: false
 
index 27c83c04e37660947c628518934390a96c1f7c6e..618f76d3c938cd9f3ee9e9334e2eb31e4ff7541f 100644 (file)
@@ -2,10 +2,10 @@ version: 1.0.{build}
 environment:
   matrix:
   - COMPILER: "gcc"
-    MAKE_PARAMS: "test"
+    MAKE_PARAMS: "make test && make lib && make -C tests fullbench-dll fullbench-lib"
     PLATFORM: "mingw64"
   - COMPILER: "gcc"
-    MAKE_PARAMS: "test"
+    MAKE_PARAMS: "make test"
     PLATFORM: "mingw32"
   - COMPILER: "visual"
     CONFIGURATION: "Debug"
@@ -62,8 +62,8 @@ build_script:
       ECHO *** &&
       make -v &&
       cc -v &&
-      ECHO make %MAKE_PARAMS% &&
-      make %MAKE_PARAMS%
+      ECHO %MAKE_PARAMS% &&
+      sh -c %MAKE_PARAMS%
     )
   - if [%COMPILER%]==[gcc] if [%PLATFORM%]==[mingw64] (
       COPY programs\zstd.exe bin\zstd.exe &&
index 976d41e16025388efa829e1f1e5406b99808df34..07283f55321ebe4b40ffcb7631a004e741626b3e 100644 (file)
@@ -18,7 +18,6 @@ extern "C" {
 #include <stddef.h>   /* size_t */
 
 
-/* =====   ZSTDLIB_API : control library symbols visibility   ===== */
 /* =====   ZSTDLIB_API : control library symbols visibility   ===== */
 #if defined(__GNUC__) && (__GNUC__ >= 4)
 #  define ZSTDLIB_VISIBILITY __attribute__ ((visibility ("default")))