This website requires JavaScript.
Explore
Help
Register
Sign In
Virtualization
/
meson
mirror of
https://gitlab.com/qemu-project/meson.git
Watch
1
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
543e9ca0cf
meson
/
test cases
/
windows
/
7 dll versioning
/
exe.orig.c
9 lines
87 B
C
Raw
Normal View
History
Unescape
Escape
tests: Minor fixes to the library-usage tests Actually use the myFunc() symbol from the library, and actually run the built executable on macOS.
2017-03-04 22:26:12 +08:00
int
myFunc
(
void
)
;
Use strict function prototypes
2019-11-19 04:21:37 +08:00
int
main
(
void
)
Add manual-linking tests to Linux and Windows In this test, we try to manually link against the generated library to create an executable and then run it to verify that it works. Also test for all possible library versioning in the versioning tests on Windows. Even though they yield the same dll naming, we should still test it.
2017-03-04 15:02:42 +08:00
{
tests: Minor fixes to the library-usage tests Actually use the myFunc() symbol from the library, and actually run the built executable on macOS.
2017-03-04 22:26:12 +08:00
if
(
myFunc
(
)
=
=
55
)
return
0
;
return
1
;
Add manual-linking tests to Linux and Windows In this test, we try to manually link against the generated library to create an executable and then run it to verify that it works. Also test for all possible library versioning in the versioning tests on Windows. Even though they yield the same dll naming, we should still test it.
2017-03-04 15:02:42 +08:00
}