1*63d1fd59SEnji Cooper /* $NetBSD: t_dlerror-cleared.c,v 1.2 2017/01/13 21:30:42 christos Exp $ */
257718be8SEnji Cooper
357718be8SEnji Cooper /*
457718be8SEnji Cooper * Copyright (c) 2009 The NetBSD Foundation, Inc.
557718be8SEnji Cooper * All rights reserved.
657718be8SEnji Cooper *
757718be8SEnji Cooper * Redistribution and use in source and binary forms, with or without
857718be8SEnji Cooper * modification, are permitted provided that the following conditions
957718be8SEnji Cooper * are met:
1057718be8SEnji Cooper * 1. Redistributions of source code must retain the above copyright
1157718be8SEnji Cooper * notice, this list of conditions and the following disclaimer.
1257718be8SEnji Cooper * 2. Redistributions in binary form must reproduce the above copyright
1357718be8SEnji Cooper * notice, this list of conditions and the following disclaimer in the
1457718be8SEnji Cooper * documentation and/or other materials provided with the distribution.
1557718be8SEnji Cooper *
1657718be8SEnji Cooper * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
1757718be8SEnji Cooper * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
1857718be8SEnji Cooper * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
1957718be8SEnji Cooper * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2057718be8SEnji Cooper * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
2157718be8SEnji Cooper * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2257718be8SEnji Cooper * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
2357718be8SEnji Cooper * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2457718be8SEnji Cooper * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
2557718be8SEnji Cooper * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2657718be8SEnji Cooper * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
2757718be8SEnji Cooper * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2857718be8SEnji Cooper */
2957718be8SEnji Cooper
3057718be8SEnji Cooper #include <sys/types.h>
3157718be8SEnji Cooper
3257718be8SEnji Cooper #include <atf-c.h>
3357718be8SEnji Cooper #include <dlfcn.h>
3457718be8SEnji Cooper #include <link_elf.h>
3557718be8SEnji Cooper
36*63d1fd59SEnji Cooper #include "h_macros.h"
3757718be8SEnji Cooper
3857718be8SEnji Cooper ATF_TC(rtld_dlerror_cleared);
ATF_TC_HEAD(rtld_dlerror_cleared,tc)3957718be8SEnji Cooper ATF_TC_HEAD(rtld_dlerror_cleared, tc)
4057718be8SEnji Cooper {
4157718be8SEnji Cooper atf_tc_set_md_var(tc, "descr",
4257718be8SEnji Cooper "error set by dlopen persists past a successful dlopen call");
4357718be8SEnji Cooper }
4457718be8SEnji Cooper
ATF_TC_BODY(rtld_dlerror_cleared,tc)4557718be8SEnji Cooper ATF_TC_BODY(rtld_dlerror_cleared, tc)
4657718be8SEnji Cooper {
4757718be8SEnji Cooper void *handle;
4857718be8SEnji Cooper char *error;
4957718be8SEnji Cooper
5057718be8SEnji Cooper /*
5157718be8SEnji Cooper * Test that an error set by dlopen() persists past a successful
5257718be8SEnji Cooper * dlopen() call.
5357718be8SEnji Cooper */
5457718be8SEnji Cooper handle = dlopen("libnonexistent.so", RTLD_LAZY);
5557718be8SEnji Cooper ATF_CHECK(handle == NULL);
5657718be8SEnji Cooper handle = dlopen("libm.so", RTLD_NOW);
5757718be8SEnji Cooper ATF_CHECK(handle);
5857718be8SEnji Cooper error = dlerror();
5957718be8SEnji Cooper ATF_CHECK(error);
6057718be8SEnji Cooper
6157718be8SEnji Cooper }
6257718be8SEnji Cooper
ATF_TP_ADD_TCS(tp)6357718be8SEnji Cooper ATF_TP_ADD_TCS(tp)
6457718be8SEnji Cooper {
6557718be8SEnji Cooper ATF_TP_ADD_TC(tp, rtld_dlerror_cleared);
6657718be8SEnji Cooper return 0;
6757718be8SEnji Cooper }
68