common.c revision 9a0255c508ede92423a1f8a02c6c38328482c55f
/*
SSSD
Common utilities for check-based tests using talloc.
Authors:
Martin Nagy <mnagy@redhat.com>
Copyright (C) Red Hat, Inc 2009
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
void
tests_set_cwd(void)
{
int ret;
if (ret == -1) {
"Attempting to continue with current dir\n", TEST_DIR);
}
}
/* Check that the option names of the two maps are the same
* and appear in the same order.
*/
{
size_t i;
for (i = 0; i < size1; i++) {
/* Check for a valid option */
/* Check whether we've gone past the end of map2 */
/* Ensure that the option names are the same */
return EINVAL;
}
}
/* Leftover options in map2 */
return EOK;
}
/* Check that the option names of the two maps are the same
* and appear in the same order.
*/
struct sdap_attr_map *map2)
{
size_t i;
for (i = 0; i < size1; i++) {
/* Check for a valid option */
/* Check whether we've gone past the end of map2 */
/* Ensure that the option names are the same */
return EINVAL;
}
}
/* Leftover options in map2 */
return EOK;
}
bool ldb_modules_path_is_set(void)
{
if (getenv("LDB_MODULES_PATH")) {
return true;
}
return false;
}