[CircleCI] Fix short-tests-0
short-tests-0 were silently failing. I think because of the && make clean construction. Switch to ; instead. Also fix all the test failures that were exposed. `make all` is failing on CircleCI because it is missing Docker. Move that test to GitHub actions, and switch the pedantic CircleCI test to `make allmost`.
This commit is contained in:
@@ -1333,7 +1333,7 @@ typedef struct {
|
||||
searchMax_f searchMax;
|
||||
} ZSTD_LazyVTable;
|
||||
|
||||
#define GEN_ZSTD_BT_VTABLE(dictMode, mls, ...) \
|
||||
#define GEN_ZSTD_BT_VTABLE(dictMode, mls) \
|
||||
static size_t ZSTD_BtFindBestMatch_##dictMode##_##mls( \
|
||||
ZSTD_matchState_t* ms, \
|
||||
const BYTE* ip, const BYTE* const iLimit, \
|
||||
@@ -1346,7 +1346,7 @@ typedef struct {
|
||||
ZSTD_BtFindBestMatch_##dictMode##_##mls \
|
||||
};
|
||||
|
||||
#define GEN_ZSTD_HC_VTABLE(dictMode, mls, ...) \
|
||||
#define GEN_ZSTD_HC_VTABLE(dictMode, mls) \
|
||||
static size_t ZSTD_HcFindBestMatch_##dictMode##_##mls( \
|
||||
ZSTD_matchState_t* ms, \
|
||||
const BYTE* ip, const BYTE* const iLimit, \
|
||||
|
||||
Reference in New Issue
Block a user