diff options
Diffstat (limited to 'lib/inviso/test/inviso_tool_SUITE_data/tracecase1_on.trc')
-rw-r--r-- | lib/inviso/test/inviso_tool_SUITE_data/tracecase1_on.trc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/inviso/test/inviso_tool_SUITE_data/tracecase1_on.trc b/lib/inviso/test/inviso_tool_SUITE_data/tracecase1_on.trc new file mode 100644 index 0000000000..a9106dbc78 --- /dev/null +++ b/lib/inviso/test/inviso_tool_SUITE_data/tracecase1_on.trc @@ -0,0 +1,17 @@ +%% TRACECASE1_ON.TRC
+%% -----------------------------------------------------------------------------
+%% This is a test trace case to be used by the inviso_tool_SUITE.
+%% Trace case setting a local pattern on math:module_info/1 and process flags
+%% on a test process which is supposed to be started by the test environment.
+%%
+%% ProcessName=atom(), variable set in the test environment.
+%% Nodes=list(), inviso_tool variable - all traced nodes.
+%% -----------------------------------------------------------------------------
+
+inviso:tpl(Nodes,math,module_info,1,[]).
+inviso:tf(Nodes,ProcessName,[call]).
+lists:foreach(fun(N)->rpc:call(N,ets,update_counter,[test_proc_tab,counter,1]) end,
+ Nodes).
+timer:sleep(500).
+%% END-OF-TRACE-CASE
+
|