X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Ftracefile-limits%2Ftest_tracefile_count;h=e446d3f3ef3ed4076a718e8abfec5739c8ee8dc0;hp=4fe6ac36e3e8159da06cd2a2a70156df0c2ca1c3;hb=a4c305246c4b8021fa1681076326731349a1cd17;hpb=67b4c664e2c6c6dc19920555c0abf094ed6cbe00 diff --git a/tests/regression/tools/tracefile-limits/test_tracefile_count b/tests/regression/tools/tracefile-limits/test_tracefile_count index 4fe6ac36e..e446d3f3e 100755 --- a/tests/regression/tools/tracefile-limits/test_tracefile_count +++ b/tests/regression/tools/tracefile-limits/test_tracefile_count @@ -28,6 +28,7 @@ STATS_BIN="$TESTDIR/utils/babelstats.pl" NUM_TESTS=74 NUM_CPUS=`nproc` +PAGE_SIZE=$(getconf PAGE_SIZE) source $TESTDIR/utils/utils.sh @@ -47,7 +48,7 @@ function enable_lttng_channel_count_limit () $TESTDIR/../src/bin/lttng/$LTTNG_BIN enable-channel \ -u $channel_name -s $sess_name \ - -C 4096 -W $tracefile_count_limit \ + -C $(($PAGE_SIZE*3)) -W $tracefile_count_limit \ --overwrite >/dev/null 2>&1 ok $? "$test_name" @@ -103,7 +104,7 @@ function test_tracefile_count_limit () session_name=$(randstring 16 0) channel_name="channel" event_name="tp:tptest" - num_iter=1000 + num_iter=100000 expected_max=$(($num_iter - 1)) diag "Test tracefile count limit : $count_limit tracefiles" @@ -118,7 +119,7 @@ function test_tracefile_count_limit () start_lttng_tracing_ok $session_name - $TESTAPP_BIN $num_iter >/dev/null 2>&1 + $TESTAPP_BIN -i $num_iter >/dev/null 2>&1 stop_lttng_tracing_ok $session_name