From 9d7e44860eedd5770b4481063b2b6631af529316 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 10 Apr 2019 09:31:13 +0200 Subject: [PATCH] test_rtt: update example config --- etc/examples/nodes/test_rtt.conf | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/etc/examples/nodes/test_rtt.conf b/etc/examples/nodes/test_rtt.conf index 83bfeb93b..42a1ac641 100644 --- a/etc/examples/nodes/test_rtt.conf +++ b/etc/examples/nodes/test_rtt.conf @@ -3,8 +3,8 @@ nodes = { type = "test_rtt", # sending rates, number of values and generates statistics. cooldown = 2, # The cooldown time between each test case in seconds - prefix = "test_rtt", # An optional prefix in the filename - output = "/tmp/results/testA", # The output directory for all results + prefix = "test_rtt_%y-%m-%d_%H-%M-%S", # An optional prefix in the filename + output = "./results", # The output directory for all results # The results of each test case will be written to a seperate file. format = "villas.human", # The output format of the result files. @@ -14,7 +14,7 @@ nodes = { # possible combinations { rates = 55.0, # The sending rate in Hz - values = 5, # The number of values which should be send in each sample + values = [ 5, 10, 20], # The number of values which should be send in each sample limit = 100 # The number of samples which should be send during this test case }, { @@ -25,3 +25,18 @@ nodes = { ) } } + + +paths = ( + { + # Simple loopback path to test the node + in = "rtt_node" + out = "rtt_node" + + # hooks = ( + # { + # type = "print" + # } + # ) + } +) \ No newline at end of file