On Mon, Dec 03, 2012 at 11:06:48AM +0400, Konstantin Serebryany wrote: > This patch copies the asan tests almost, but not quite, verbatim from upstream. > Since the patch is not in attachment (and gmail messes up with inlined > patches) I can't see the exact changes. Sending patches inline rather than as attachments is the preferred way for gcc-patches, you can always grab it from the gcc-patches ml archive: http://gcc.gnu.org/ml/gcc-patches/2012-11/msg02557.html (then click on Raw text). I'm attaching the diff for asan_test.cc from llvm anyway. > I see #ifdef ASAN_AVOID_EXPENSIVE_TESTS, which I don't really like > because I'd rather fix the test than disable it. The test isn't disabled, just by default limited to 30 threads instead of 1000, because that really will ruin testing for everybody with ulimit -u in 1024-ish range. Even 500 threads would be undesirable for that. > Can we commit the tests 100% verbatim, and then fix them as separate commits > (preferably, by fixing the tests upstream and doing the merge with > libsanitizer/merge.sh)? I'd prefer delay committing the patch over causing random testsuite failures elsewhere. Jakub