diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2023-10-26 19:23:20 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2023-10-27 17:43:03 +0300 |
| commit | 3bbe66e971dfe84dcffa702c2673fb136da0a508 (patch) | |
| tree | dfad22ea1a365b4584320a92f1aa592ef868e14d /test cases/unit/103 strip | |
| parent | ada6236f76f4fbce4313b48eeaf9d8485516fde8 (diff) | |
| download | meson-3bbe66e971dfe84dcffa702c2673fb136da0a508.tar.gz | |
Condense test directories for RC1.
Diffstat (limited to 'test cases/unit/103 strip')
| -rw-r--r-- | test cases/unit/103 strip/lib.c | 3 | ||||
| -rw-r--r-- | test cases/unit/103 strip/meson.build | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test cases/unit/103 strip/lib.c b/test cases/unit/103 strip/lib.c new file mode 100644 index 000000000..7d8163c3b --- /dev/null +++ b/test cases/unit/103 strip/lib.c @@ -0,0 +1,3 @@ +#include <stdio.h> + +void func(void){ fprintf(stderr, "Test 1 2 3\n"); } diff --git a/test cases/unit/103 strip/meson.build b/test cases/unit/103 strip/meson.build new file mode 100644 index 000000000..dff61ab43 --- /dev/null +++ b/test cases/unit/103 strip/meson.build @@ -0,0 +1,3 @@ +project('strip', 'c') + +shared_library('a', 'lib.c', install: true) |
