diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-31 19:22:24 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-31 19:22:24 +0300 |
commit | 17bfbb99e5897ac759aca42d3ee375ebb33bd087 (patch) | |
tree | 8df2a3f7cbfcca9c30df15404f0227dfe0107705 /test cases/unit/15 prebuilt object | |
parent | 2bc0f56b21a6dd327a6907c5fe27885b05db49d5 (diff) | |
download | meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.zip meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.tar.gz meson-17bfbb99e5897ac759aca42d3ee375ebb33bd087.tar.bz2 |
Condense test dirs.
Diffstat (limited to 'test cases/unit/15 prebuilt object')
-rw-r--r-- | test cases/unit/15 prebuilt object/main.c | 5 | ||||
-rw-r--r-- | test cases/unit/15 prebuilt object/meson.build | 25 | ||||
-rw-r--r-- | test cases/unit/15 prebuilt object/source.c | 8 |
3 files changed, 38 insertions, 0 deletions
diff --git a/test cases/unit/15 prebuilt object/main.c b/test cases/unit/15 prebuilt object/main.c new file mode 100644 index 0000000..480bda5 --- /dev/null +++ b/test cases/unit/15 prebuilt object/main.c @@ -0,0 +1,5 @@ +int func(); + +int main(int argc, char **argv) { + return func() == 42 ? 0 : 99; +} diff --git a/test cases/unit/15 prebuilt object/meson.build b/test cases/unit/15 prebuilt object/meson.build new file mode 100644 index 0000000..92f966b --- /dev/null +++ b/test cases/unit/15 prebuilt object/meson.build @@ -0,0 +1,25 @@ +# This test is on its own because it is special. +# To run the test you need the prebuilt object +# file for the given platform. +# +# Combined with cross compilation this would make +# the state space explode so let's just keep this +# in its own subdir so it's not run during cross +# compilation tests. + +project('prebuilt object', 'c') + +if host_machine.system() == 'windows' + prebuilt = 'prebuilt.obj' +else + prebuilt = 'prebuilt.o' +endif + +# Remember: do not put source.c in this +# declaration. run_tests.py generates the +# prebuilt object before running this test. + +e = executable('prog', 'main.c', +objects : prebuilt) + +test('objtest', e) diff --git a/test cases/unit/15 prebuilt object/source.c b/test cases/unit/15 prebuilt object/source.c new file mode 100644 index 0000000..f39b4f3 --- /dev/null +++ b/test cases/unit/15 prebuilt object/source.c @@ -0,0 +1,8 @@ +/* + * Compile this manually on new platforms and add the + * object file to revision control and Meson configuration. + */ + +int func() { + return 42; +} |