1
1

Silence warnings and ignore test binary

Signed-off-by: Ralph Castain <rhc@open-mpi.org>
Этот коммит содержится в:
Ralph Castain 2018-06-15 11:32:22 -07:00
родитель e2e6da4379
Коммит 94794011f1
2 изменённых файлов: 4 добавлений и 2 удалений

2
.gitignore поставляемый
Просмотреть файл

@ -676,6 +676,8 @@ test/runtime/start_shut
test/runtime/opal_init_finalize
test/runtime/orte_init_finalize
test/spc/spc_test
test/threads/opal_condition
test/threads/opal_thread

Просмотреть файл

@ -17,7 +17,7 @@
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2016-2018 IBM Corporation. All rights reserved.
* Copyright (c) 2017 Intel, Inc. All rights reserved.
* Copyright (c) 2017-2018 Intel, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -352,7 +352,7 @@ int opal_infosubscribe_subscribe(opal_infosubscriber_t *object, char *key, char
if (strlen(key) > OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)) {
fprintf(stderr, "DEVELOPER WARNING: Unexpected key length [%s]: "
"OMPI internal callback keys are limited to %d chars\n",
key, OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX));
key, (int)(OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)));
#if OPAL_ENABLE_DEBUG
assert(!(strlen(key) > OPAL_MAX_INFO_KEY-strlen(OPAL_INFO_SAVE_PREFIX)));
#endif