X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Frszshm%2F_info;h=e9122e0b78b76dd0489286c7cbe28f912d154b24;hb=0fe2d094b262f6e8bed798930e8c4716d33d5dc7;hp=cc95400ce64f53bc0496b74bb2be4d2351197b33;hpb=25b7406d11ea3703be864097af66ce95611dde72;p=ccan diff --git a/ccan/rszshm/_info b/ccan/rszshm/_info index cc95400c..e9122e0b 100644 --- a/ccan/rszshm/_info +++ b/ccan/rszshm/_info @@ -76,13 +76,8 @@ * // $ tail -c +29 /dev/shm/rszshm_LAsEvt/0 | sed 's/./&\n/g' | sort | uniq -c | tr '\n' '\t'; echo * // 515532 A 527251 B 512930 C 513062 D 544326 E 545876 F 512936 G 522363 H * - * Ccanlint: tests_pass_valgrind FAIL * License: APACHE-2 * Author: Dan Good - * - * Ccanlint: - * // tests use optional macros containing statement expressions - * tests_compile_without_features FAIL */ int main(int argc, char *argv[]) { @@ -93,5 +88,12 @@ int main(int argc, char *argv[]) if (strcmp(argv[1], "depends") == 0) return 0; + if (strcmp(argv[1], "ccanlint") == 0) { + printf("tests_pass_valgrind FAIL\n"); + /* tests use optional macros containing statement expressions */ + printf("tests_compile_without_features FAIL\n"); + return 0; + } + return 1; }