1
1

btl_base_select: fix faulty/incorrect show_help message

When no components were able to be found, btl_base_select() was
showing the wrong help message -- one that indicated that a specific
component could not be found.  And it left off a string argument, so
the end of the help message was garbage.

This commit creates a new help message for this case and updates the
show_help call to use the new message.

This commit was SVN r32572.
Этот коммит содержится в:
Jeff Squyres 2014-08-22 01:53:38 +00:00
родитель 9987135da0
Коммит a896f90712
2 изменённых файлов: 16 добавлений и 1 удалений

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

@ -30,6 +30,17 @@ Host: %s
Framework: %s
Component: %s
#
[find-available:none found]
No components were able to be opened in the %s framework.
This typically means that either no components of this type were
installed, or none of the installed componnets can be loaded.
Sometimes this means that shared libraries required by these
components are unable to be found/loaded.
Host: %s
Framework: %s
#
[framework-param:too-many-negates]
MCA framework parameters can only take a single negation operator
("^"), and it must be at the beginning of the value. The following

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

@ -15,6 +15,7 @@
* All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -154,7 +155,10 @@ int mca_btl_base_select(bool enable_progress_threads,
/* Finished querying all components. Check for the bozo case. */
if (0 == opal_list_get_size(&mca_btl_base_modules_initialized)) {
opal_show_help("help-mca-base.txt", "find-available:not-valid", true,
opal_show_help("help-mca-base.txt", "find-available:none found",
true,
"btl",
opal_process_info.nodename,
"btl");
return OPAL_ERROR;
}