aboutsummaryrefslogtreecommitdiffstats
path: root/docs/report/trex_performance_tests
ModeNameSize
-rw-r--r--csit_release_notes.rst1037logstatsplain
d---------hdrh_packet_latency_by_percentile_graphs38logstatsplain
-rw-r--r--index.rst190logstatsplain
-rw-r--r--overview.rst18logstatsplain
d---------packet_latency80logstatsplain
d---------packet_throughput_graphs80logstatsplain
-rw-r--r--test_environment.rst40logstatsplain
-rw-r--r--throughput_trending.rst40logstatsplain
>STREQUAL "xterm-256color") string(ASCII 27 esc) set(red "${esc}[1;31m") set(yellow "${esc}[1;33m") set(reset "${esc}[m") endif() if(type STREQUAL FATAL_ERROR OR type STREQUAL SEND_ERROR) list(REMOVE_AT ARGV 0) _message(${type} "${red}${ARGV}${reset}") elseif(type STREQUAL WARNING) list(REMOVE_AT ARGV 0) _message(STATUS "${yellow}${ARGV}${reset}") elseif(type STREQUAL STATUS) list(REMOVE_AT ARGV 0) _message(STATUS "${ARGV}") else() _message(${ARGV}) endif() endfunction() ############################################################################## # aligned config output ############################################################################## function(pr desc val) if("$ENV{TERM}" STREQUAL "xterm-256color") string(ASCII 27 esc) set(reset "${esc}[m") set(cyan "${esc}[36m") endif() string(LENGTH ${desc} len) while (len LESS 20) set (desc "${desc} ") string(LENGTH ${desc} len) endwhile() _message("${cyan}${desc}${reset}: ${val}") endfunction() ############################################################################## # string append ############################################################################## macro(string_append var str) if (NOT ${var}) set(${var} "${str}") else() set(${var} "${${var}} ${str}") endif() endmacro()