Add dynamic array tracing tests
[deliverable/barectf.git] / tests / tracing / src / succeed / dynamic-array / of-static-array-of-str.c
diff --git a/tests/tracing/src/succeed/dynamic-array/of-static-array-of-str.c b/tests/tracing/src/succeed/dynamic-array/of-static-array-of-str.c
new file mode 100644 (file)
index 0000000..51c16df
--- /dev/null
@@ -0,0 +1,42 @@
+/*
+ * The MIT License (MIT)
+ *
+ * Copyright (c) 2020 Philippe Proulx <pproulx@efficios.com>
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+#include <assert.h>
+
+#include "test-platform.h"
+#include "barectf.h"
+
+int main()
+{
+       struct test_platform_ctx *platform_ctx;
+       const char * const str1[] = {"Officia", "sit", "labore"};
+       const char * const str2[] = {"Excepteur", "labore", "non"};
+       const char * const * const array[] = {str1, str2};
+
+       platform_ctx = test_platform_init(512);
+       assert(platform_ctx);
+       barectf_trace_ev(test_platform_barectf_ctx(platform_ctx), 2, array);
+       test_platform_fini(platform_ctx);
+       return 0;
+}
This page took 0.02735 seconds and 4 git commands to generate.