diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2025-04-14 22:14:50 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2025-04-14 23:36:31 +0300 |
| commit | cdf4b39e6f0a94ae14fc923bb54a04e846bcc2d7 (patch) | |
| tree | 90591169093573abf40db5895ebc5d7f428c3285 /test cases/unit/103 strip | |
| parent | 028abfe87c5d3b4dfe8a29472119aa1581beb215 (diff) | |
| download | meson-cdf4b39e6f0a94ae14fc923bb54a04e846bcc2d7.tar.gz | |
Condense directory names for 1.8 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) |
