[DFSan] Appease the custom wrapper lint script.

This commit is contained in:
Matt Morehouse 2020-12-10 14:12:00 -08:00
parent 671ad58061
commit 5ff35356f1
1 changed files with 5 additions and 0 deletions

View File

@ -800,6 +800,10 @@ void test_pthread_create() {
ASSERT_ZERO_LABEL(cbrv);
}
// Tested by test_pthread_create(). This empty function is here to appease the
// check-wrappers script.
void test_pthread_join() {}
int dl_iterate_phdr_test_cb(struct dl_phdr_info *info, size_t size,
void *data) {
assert(data == (void *)3);
@ -1220,6 +1224,7 @@ int main(void) {
test_poll();
test_pread();
test_pthread_create();
test_pthread_join();
test_read();
test_recvmsg();
test_sched_getaffinity();