]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Add static linking to legacy tests 1547/head
authorshakeelrao <shakeelrao79@gmail.com>
Fri, 15 Mar 2019 12:13:55 +0000 (05:13 -0700)
committershakeelrao <shakeelrao79@gmail.com>
Fri, 15 Mar 2019 12:13:55 +0000 (05:13 -0700)
tests/legacy.c

index 6da71227ffd7142cc6b4d562bcd2e19909490f18..e660b9cc6d3d1f416f74789414dc72def517a1a1 100644 (file)
 /*===========================================
 *   Dependencies
 *==========================================*/
-#include <stddef.h>     /* size_t */
-#include <stdlib.h>     /* malloc, free */
-#include <stdio.h>      /* fprintf */
-#include <string.h>     /* strlen */
+#include <stddef.h>              /* size_t */
+#include <stdlib.h>              /* malloc, free */
+#include <stdio.h>               /* fprintf */
+#include <string.h>              /* strlen */
+#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_decompressBound */
 #include "zstd.h"
 #include "zstd_errors.h"
 
@@ -136,10 +137,6 @@ static int testFrameDecoding(void)
         DISPLAY("ERROR: ZSTD_decompressBound: Expected to receive ZSTD_CONTENTSIZE_ERROR\n");
         return 1;
     }
-    if (ZSTD_findFrameCompressedSize(COMPRESSED) != COMPRESSED_SIZE) {
-        DISPLAY("ERROR: ZSTD_findFrameCompressedSize: Expected to receive %d\n", COMPRESSED_SIZE);
-        return 1;
-    }
     DISPLAY("Frame Decoding OK\n");
     return 0;
 }