mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 19:49:50 +00:00
winetest: Always report errors and fatal errors, even in quiet mode.
This commit is contained in:
parent
df1a5cb9d0
commit
043c7fc076
1 changed files with 1 additions and 7 deletions
|
@ -401,12 +401,6 @@ qNoOp (va_list ap)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
|
||||||
qFatal (va_list ap)
|
|
||||||
{
|
|
||||||
exit (1);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
qAsk (va_list ap)
|
qAsk (va_list ap)
|
||||||
{
|
{
|
||||||
|
@ -507,7 +501,7 @@ report (enum report_type t, ...)
|
||||||
static r_fun_t * const quiet_funcs[] =
|
static r_fun_t * const quiet_funcs[] =
|
||||||
{qNoOp, qNoOp, qNoOp, qNoOp,
|
{qNoOp, qNoOp, qNoOp, qNoOp,
|
||||||
qNoOp, qNoOp, qNoOp,
|
qNoOp, qNoOp, qNoOp,
|
||||||
qNoOp, qNoOp, qFatal, qAsk};
|
qNoOp, textError, textFatal, qAsk};
|
||||||
static r_fun_t * const * funcs = NULL;
|
static r_fun_t * const * funcs = NULL;
|
||||||
|
|
||||||
switch (t) {
|
switch (t) {
|
||||||
|
|
Loading…
Reference in a new issue