Created
July 5, 2018 17:58
-
-
Save tko/35c1232ea44f4ddca7a059555d096a88 to your computer and use it in GitHub Desktop.
meson coverage test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(int argc, char **argv) { | |
printf("Hello world!\n"); | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() { | |
println!("Hello world!"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project('coverage-test', 'c', 'rust') | |
hello_c = executable('hello_c', 'hello.c') | |
test('hello_c', hello_c) | |
hello_rs = executable('hello_rs', 'hello.rs') | |
test('hello_rs', hello_rs) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment