Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [TSan][libdispatch] Use FileCheck's --implicit-check-not=... | Julian Lettner | 2019-05-16 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Use FileCheck's --implicit-check-not='ThreadSanitizer' which increases the strictness of our tests a bit. NFC. ``` CHECK: start CHECK-NOT: ThreadSanitizer CHECK: done ``` With --implicit-check-not, the above is turned into: ``` CHECK-NOT: ThreadSanitizer CHECK: start CHECK-NOT: ThreadSanitizer CHECK: done CHECK-NOT: ThreadSanitizer ``` llvm-svn: 360927 | ||||
* | [TSan][libdispatch] Move libdispatch tests out of Darwin folder | Julian Lettner | 2019-04-12 | 1 | -0/+47 |
The libdispatch tests are now not tied to Darwin anymore. Move them to their own platform-independent folder. llvm-svn: 358316 |