Tests: Fix the number of tests in test_tracefile_count
authorChristian Babeux <christian.babeux@efficios.com>
Wed, 15 May 2013 18:04:10 +0000 (14:04 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 15 May 2013 19:18:27 +0000 (15:18 -0400)
The number of planned tests is dependent on the number of streams (1 per
cpu).

Signed-off-by: Christian Babeux <christian.babeux@efficios.com>
Signed-off-by: David Goulet <dgoulet@efficios.com>
tests/regression/tools/tracefile-limits/test_tracefile_count

index 41b89f005df2e673faf4640c3fbee1da44742df3..0c23d843b049e9a4e97fc0480cff0ecab15e8505 100755 (executable)
@@ -25,7 +25,9 @@ TESTAPP_NAME="gen-ust-events"
 TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME"
 
 STATS_BIN="$TESTDIR/utils/babelstats.pl"
-NUM_TESTS=146
+NUM_TESTS=82
+
+NUM_CPUS=`nproc`
 
 source $TESTDIR/utils/utils.sh
 
@@ -134,9 +136,7 @@ function test_tracefile_count_limit ()
 
        # Validate tracing dir
 
-       num_cpu=`nproc`
-
-       for cpuno in $(seq 0 $(($num_cpu - 1)))
+       for cpuno in $(seq 0 $(($NUM_CPUS - 1)))
        do
                validate_file_count \
                    $trace_path "${channel_name}_${cpuno}_*" $count_limit
@@ -158,14 +158,17 @@ function test_tracefile_count_limit ()
        rm -rf $trace_path
 }
 
-plan_tests $NUM_TESTS
+LIMITS=("1" "2" "4" "8" "10" "16" "32" "64")
+
+# The file count validation depends on the number of streams (1 per cpu)
+TOTAL_TESTS=$(($NUM_TESTS + (${#LIMITS[@]} * $NUM_CPUS)))
+
+plan_tests $TOTAL_TESTS
 
 print_test_banner "$TEST_DESC"
 
 start_lttng_sessiond
 
-LIMITS=("1" "2" "4" "8" "10" "16" "32" "64")
-
 for limit in ${LIMITS[@]};
 do
        test_tracefile_count_limit $limit
This page took 0.027452 seconds and 4 git commands to generate.