diff options
author | 2023-10-08 18:48:06 +0600 | |
---|---|---|
committer | 2023-10-08 18:50:58 +0600 | |
commit | 0a994adf3c6feab7d50b4bea01659436e4c695b4 (patch) | |
tree | 63812ecb2049a2e003b5340d47522dbc914d2c9b /tests/meson.build | |
parent | d5c12ef35ae5b26df0ae6507002ad18b2f7c22b4 (diff) | |
download | jadupc-remote-support-console-0a994adf3c6feab7d50b4bea01659436e4c695b4.tar.gz jadupc-remote-support-console-0a994adf3c6feab7d50b4bea01659436e4c695b4.zip |
test: Add unit test for parser
Signed-off-by: Mubashshir <ahm@jadupc.com>
Diffstat (limited to '')
-rw-r--r-- | tests/meson.build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build new file mode 100644 index 0000000..60ca59e --- /dev/null +++ b/tests/meson.build @@ -0,0 +1,10 @@ +foreach target : [ + 'Tmate.StdoutParser' +] + test('Test-@0@'.format(target), + executable('Test-@0@'.format(target), + files('@0@.vala'.format(target)) + tests, + dependencies: deps, + c_args: ['-include', 'config.h'], + )) +endforeach |