Tests: use babeltrace2 for all tests
[lttng-tools.git] / tests / regression / tools / filtering / test_invalid_filter
index 066a0e5745bfc2f99b0a15cccf1e8351496bde30..01306123929a843e5531776deb400660e116c3f7 100755 (executable)
@@ -1,6 +1,8 @@
 #!/bin/bash
 #
-# Copyright (C) - 2012 Christian Babeux <christian.babeux@efficios.com>
+# Copyright (C) 2012 Christian Babeux <christian.babeux@efficios.com>
+#
+# SPDX-License-Identifier: GPL-2.0-only
 #
 # This program is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License, version 2 only, as
@@ -22,10 +24,10 @@ TESTDIR=$CURDIR/../../..
 SESSION_NAME="filter-invalid"
 EVENT_NAME="bogus"
 ENABLE_EVENT_STDERR="/tmp/invalid-filters-stderr"
-TRACE_PATH=$(mktemp -d)
+TRACE_PATH=$(mktemp --tmpdir -d tmp.test_filtering_invalid_filters_trace_path.XXXXXX)
 NUM_GLOBAL_TESTS=2
-NUM_UST_TESTS=135
-NUM_KERNEL_TESTS=135
+NUM_UST_TESTS=138
+NUM_KERNEL_TESTS=138
 NUM_TESTS=$(($NUM_UST_TESTS+$NUM_KERNEL_TESTS+$NUM_GLOBAL_TESTS))
 
 source $TESTDIR/utils/utils.sh
@@ -92,6 +94,8 @@ plan_tests $NUM_TESTS
 
 print_test_banner "$TEST_DESC"
 
+bail_out_if_no_babeltrace
+
 OLDIFS="$IFS"
 IFS=$'\n'
 INVALID_FILTERS=(
@@ -149,6 +153,8 @@ INVALID_FILTERS=(
                'field > "hello*world"'
                'field && "hello*world"'
                'field || "hello*world"'
+               # Array expression must contain constant index
+               'field[abc] == 1'
 )
 IFS="$OLDIFS"
 
This page took 0.025819 seconds and 4 git commands to generate.