Lines Matching defs:run_screaming
89 void run_screaming(const char *message, const int code) {
100 run_screaming(message, 1);
134 run_screaming("Couldn't run LZ4_compress_default()... error code received is in exit code.", rv);
136 run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
147 run_screaming("Couldn't run LZ4_compress_fast()... error code received is in exit code.", rv);
149 run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
160 run_screaming("Couldn't run LZ4_compress_fast_extState()... error code received is in exit code.", rv);
162 run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
178 // run_screaming("Couldn't run LZ4_compress_generic()... error code received is in exit code.", rv);
180 // run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
193 run_screaming("Couldn't run LZ4_decompress_safe()... error code received is in exit code.", rv);
195 run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
206 run_screaming("Couldn't run LZ4_decompress_fast()... error code received is in exit code.", rv);
208 run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst... ruh roh.", 1);
215 run_screaming("The test specified isn't valid. Please check your code.", 1);
256 run_screaming("Couldn't allocate memory for the destination buffers. Sad :(", 1);
261 run_screaming("Couldn't create a known-good destination buffer for comparison... this is bad.", 1);
265 run_screaming("Couldn't create a known-good (highly compressible) destination buffer for comparison... this is bad.", 1);
277 run_screaming("Failed to compress src using LZ4_compress_fast. echo $? for return code.", bytes_returned);
279 run_screaming("According to memcmp(), the value we got in dst from LZ4_compress_fast doesn't match the known-good value. This is bad.", 1);
287 run_screaming("Failed to compress src using LZ4_compress_fast_extState. echo $? for return code.", bytes_returned);
289 run_screaming("According to memcmp(), the value we got in dst from LZ4_compress_fast_extState doesn't match the known-good value. This is bad.", 1);
307 run_screaming("Failed to compress src using LZ4_compress_generic. echo $? for return code.", bytes_returned);
309 run_screaming("According to memcmp(), the value we got in dst from LZ4_compress_generic doesn't match the known-good value. This is bad.", 1);