diff options
| author | chitranjali <chitranjali189@gmail.com> | 2018-03-29 14:43:56 +0530 |
|---|---|---|
| committer | chitranjali <chitranjali189@gmail.com> | 2018-03-29 14:43:56 +0530 |
| commit | cc6be2e43d403f240f8e9bb1f0b80825124b71cf (patch) | |
| tree | b22cdd5ceb2b604ab4c07c212e305d48cfa500fe /test cases/unit | |
| parent | 34cb503c854e9afe2f3e13e9d4a5788c47b830a9 (diff) | |
| download | meson-cc6be2e43d403f240f8e9bb1f0b80825124b71cf.tar.gz | |
Fixing flake8
Diffstat (limited to 'test cases/unit')
| -rw-r--r-- | test cases/unit/25 shared_mod linking/meson.build | 5 | ||||
| -rw-r--r-- | test cases/unit/26 shared_mod linking/libfile.c (renamed from test cases/unit/25 shared_mod linking/libfile.c) | 0 | ||||
| -rw-r--r-- | test cases/unit/26 shared_mod linking/main.c (renamed from test cases/unit/25 shared_mod linking/main.c) | 0 | ||||
| -rw-r--r-- | test cases/unit/26 shared_mod linking/meson.build | 5 |
4 files changed, 5 insertions, 5 deletions
diff --git a/test cases/unit/25 shared_mod linking/meson.build b/test cases/unit/25 shared_mod linking/meson.build deleted file mode 100644 index 2df16fc49..000000000 --- a/test cases/unit/25 shared_mod linking/meson.build +++ /dev/null @@ -1,5 +0,0 @@ -project('shared library linking test', 'c', 'cpp') - -lib = shared_module('mylib', 'libfile.c') - -exe = executable('prog', 'main.c', link_with : lib, install : true)
\ No newline at end of file diff --git a/test cases/unit/25 shared_mod linking/libfile.c b/test cases/unit/26 shared_mod linking/libfile.c index 44f7667d4..44f7667d4 100644 --- a/test cases/unit/25 shared_mod linking/libfile.c +++ b/test cases/unit/26 shared_mod linking/libfile.c diff --git a/test cases/unit/25 shared_mod linking/main.c b/test cases/unit/26 shared_mod linking/main.c index 12f9c984b..12f9c984b 100644 --- a/test cases/unit/25 shared_mod linking/main.c +++ b/test cases/unit/26 shared_mod linking/main.c diff --git a/test cases/unit/26 shared_mod linking/meson.build b/test cases/unit/26 shared_mod linking/meson.build new file mode 100644 index 000000000..994a5d390 --- /dev/null +++ b/test cases/unit/26 shared_mod linking/meson.build @@ -0,0 +1,5 @@ +project('shared library linking test', 'c', 'cpp') + +mod = shared_module('mymod', 'libfile.c') + +exe = executable('prog', 'main.c', link_with : mod, install : true)
\ No newline at end of file |
