Filter: index array, sequences, implement bitwise binary operators
[lttng-tools.git] / tests / regression / tools / filtering / test_unsupported_op
index 985f14e14d106299b894d4faa37f19b75b53d5e4..7395da0dd8043a9a679c5e6b827ba001982ef4e7 100755 (executable)
@@ -25,8 +25,8 @@ EVENT_NAME="bogus"
 ENABLE_EVENT_STDERR="/tmp/unsupported-ops-enable"
 TRACE_PATH=$(mktemp -d)
 NUM_GLOBAL_TESTS=2
-NUM_UST_TESTS=44
-NUM_KERNEL_TESTS=44
+NUM_UST_TESTS=32
+NUM_KERNEL_TESTS=32
 NUM_TESTS=$(($NUM_UST_TESTS+$NUM_KERNEL_TESTS+$NUM_GLOBAL_TESTS))
 
 source $TESTDIR/utils/utils.sh
@@ -94,9 +94,9 @@ print_test_banner "$TEST_DESC"
 
 # Unsupported operators
 OP_STR=("MUL" "DIV" "MOD" "PLUS" "MINUS" "LSHIFT" "RSHIFT"
-       "BIN_AND" "BIN_OR" "BIN_XOR" "UNARY_BIN_NOT")
+       "UNARY_BIN_NOT")
 
-OP_TKN=("*" "/" "%" "+" "-" "<<" ">>" "&" "|" "^" "~")
+OP_TKN=("*" "/" "%" "+" "-" "<<" ">>" "~")
 
 OP_COUNT=${#OP_STR[@]}
 
This page took 0.024186 seconds and 5 git commands to generate.