X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fregression%2Fust%2Foverlap%2Fdemo%2Fust_tests_demo.h;fp=tests%2Fregression%2Fust%2Foverlap%2Fdemo%2Fust_tests_demo.h;h=c9d12eaed943050855d0270eb66f4dbb3d0c8650;hp=8c9c89058be1398064c9b2f8c2ee8880895dfa90;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b diff --git a/tests/regression/ust/overlap/demo/ust_tests_demo.h b/tests/regression/ust/overlap/demo/ust_tests_demo.h index 8c9c89058..c9d12eaed 100644 --- a/tests/regression/ust/overlap/demo/ust_tests_demo.h +++ b/tests/regression/ust/overlap/demo/ust_tests_demo.h @@ -13,31 +13,29 @@ #include -TRACEPOINT_EVENT(ust_tests_demo, starting, - TP_ARGS(int, value), - TP_FIELDS( - ctf_integer(int, value, value) - ) -) +TRACEPOINT_EVENT(ust_tests_demo, + starting, + TP_ARGS(int, value), + TP_FIELDS(ctf_integer(int, value, value))) TRACEPOINT_LOGLEVEL(ust_tests_demo, starting, TRACE_CRIT) /* * Dummy model information, just for example. TODO: we should check if * EMF model URI have some standard format we should follow. */ -TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, starting, - "http://example.com/path_to_model?q=ust_tests_demo:starting") - -TRACEPOINT_EVENT(ust_tests_demo, done, - TP_ARGS(int, value), - TP_FIELDS( - ctf_integer(int, value, value) - ) -) +TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, + starting, + "http://example.com/path_to_model?q=ust_tests_demo:starting") + +TRACEPOINT_EVENT(ust_tests_demo, + done, + TP_ARGS(int, value), + TP_FIELDS(ctf_integer(int, value, value))) TRACEPOINT_LOGLEVEL(ust_tests_demo, done, TRACE_CRIT) -TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, done, - "http://example.com/path_to_model?q=ust_tests_demo:done") +TRACEPOINT_MODEL_EMF_URI(ust_tests_demo, + done, + "http://example.com/path_to_model?q=ust_tests_demo:done") #endif /* _TRACEPOINT_UST_TESTS_DEMO_H */