Mir
include
test
mir
test
death.h
Go to the documentation of this file.
1
/*
2
* Copyright © 2016 Canonical Ltd.
3
*
4
* This program is free software: you can redistribute it and/or modify it
5
* under the terms of the GNU General Public License version 2 or 3,
6
* as published by the Free Software Foundation.
7
*
8
* This program is distributed in the hope that it will be useful,
9
* but WITHOUT ANY WARRANTY; without even the implied warranty of
10
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
* GNU General Public License for more details.
12
*
13
* You should have received a copy of the GNU General Public License
14
* along with this program. If not, see <http://www.gnu.org/licenses/>.
15
*
16
* Authored by: Daniel van Vugt <daniel.van.vugt@canonical.com>
17
*/
18
19
#ifndef MIR_TEST_DEATH_H_
20
#define MIR_TEST_DEATH_H_
21
22
#include <sys/resource.h>
23
#include <gtest/gtest.h>
24
25
namespace
mir
{
namespace
test {
26
27
inline
void
disable_core_dump
()
28
{
29
struct
rlimit zeroes{0,0};
30
setrlimit(RLIMIT_CORE, &zeroes);
31
}
32
33
} }
// namespace mir::test
34
35
#define MIR_EXPECT_DEATH(statement, message) \
36
EXPECT_DEATH( \
37
{ \
38
::mir::test::disable_core_dump(); \
39
{ statement ; } \
40
}, message);
41
42
#define MIR_EXPECT_EXIT(statement, how, message) \
43
EXPECT_EXIT( \
44
{ \
45
::mir::test::disable_core_dump(); \
46
{ statement ; } \
47
}, how, message);
48
49
#endif
/* MIR_TEST_DEATH_H_ */
mir
AutoUnblockThread is a helper thread class that can gracefully shutdown at destruction time...
Definition:
sw_splash.h:26
mir::test::disable_core_dump
void disable_core_dump()
Definition:
death.h:27
Copyright © 2012-2017 Canonical Ltd.
Generated on Mon Oct 30 19:44:55 UTC 2017