Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0f962880
Commit
0f962880
authored
Sep 08, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winetest: Report success if the report has been submitted successfully.
parent
44a81794
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
main.c
programs/winetest/main.c
+10
-2
No files found.
programs/winetest/main.c
View file @
0f962880
...
...
@@ -1525,10 +1525,18 @@ int __cdecl main( int argc, char *argv[] )
if
(
build_id
[
0
]
&&
nr_of_skips
<=
SKIP_LIMIT
&&
failures
<=
FAILURES_LIMIT
&&
!
nr_native_dlls
&&
!
is_win9x
&&
report
(
R_ASK
,
MB_YESNO
,
"Do you want to submit the test results?"
)
==
IDYES
)
{
if
(
!
send_file
(
submiturl
,
logname
)
&&
!
DeleteFileA
(
logname
))
report
(
R_WARNING
,
"Can't remove logfile: %u"
,
GetLastError
());
}
else
run_tests
(
logname
,
outdir
);
report
(
R_STATUS
,
"Finished - %u failures"
,
failures
);
else
failures
=
0
;
/* return success */
}
}
else
{
run_tests
(
logname
,
outdir
);
report
(
R_STATUS
,
"Finished - %u failures"
,
failures
);
}
if
(
prev_crash_dialog
)
restore_crash_dialog
(
prev_crash_dialog
);
}
if
(
poweroff
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment