Skip to content
Snippets Groups Projects
Commit a49a0902 authored by Danny Auble's avatar Danny Auble
Browse files

Add output of what is being tested

parent bf2c9117
No related branches found
No related tags found
No related merge requests found
...@@ -150,6 +150,7 @@ if { $exit_code } { ...@@ -150,6 +150,7 @@ if { $exit_code } {
} }
# Add a preempt qos with = # Add a preempt qos with =
send_user "Add a preempt qos with =\n"
_local_mod_qos "=$qos_test(1)" _local_mod_qos "=$qos_test(1)"
check_pre $qos_test(1) check_pre $qos_test(1)
...@@ -158,12 +159,14 @@ reset_qos ...@@ -158,12 +159,14 @@ reset_qos
check_pre " " check_pre " "
# Add multiple QoSs with = # Add multiple QoSs with =
send_user "Add multiple QoSs with =\n"
_local_mod_qos "=$qos_test(1),$qos_test(2)" _local_mod_qos "=$qos_test(1),$qos_test(2)"
check_pre "$qos_test(1),$qos_test(2)" check_pre "$qos_test(1),$qos_test(2)"
reset_qos reset_qos
check_pre " " check_pre " "
# Add multiple QoSs with += # Add multiple QoSs with +=
send_user "Add multiple QoSs with +=\n"
_local_mod_qos "=$qos_test(1)" _local_mod_qos "=$qos_test(1)"
_local_mod_qos "+=$qos_test(2)" _local_mod_qos "+=$qos_test(2)"
check_pre "$qos_test(1),$qos_test(2)" check_pre "$qos_test(1),$qos_test(2)"
...@@ -173,6 +176,7 @@ reset_qos ...@@ -173,6 +176,7 @@ reset_qos
check_pre " " check_pre " "
# Remove some of the QoS with -= # Remove some of the QoS with -=
send_user "Add multiple QoSs with -=\n"
_local_mod_qos "=$qos_test(1),$qos_test(2),$qos_test(3),$qos_test(4)" _local_mod_qos "=$qos_test(1),$qos_test(2),$qos_test(3),$qos_test(4)"
check_pre "$qos_test(1),$qos_test(2),$qos_test(3),$qos_test(4)" check_pre "$qos_test(1),$qos_test(2),$qos_test(3),$qos_test(4)"
_local_mod_qos "-=$qos_test(2)" _local_mod_qos "-=$qos_test(2)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment