diff --git a/tests/bash_libraries/framework.sh b/tests/bash_libraries/framework.sh index 17e96d4..8da220e 100644 --- a/tests/bash_libraries/framework.sh +++ b/tests/bash_libraries/framework.sh @@ -227,16 +227,22 @@ __framework_sh__log_environment() { git status echo "" + echo "************" + echo "* Spec.json *" + echo "************" + cat "$(path_join "$__framework_sh__application_directory" ./spec.json)" + echo "" + echo "************" echo "* Makefile *" echo "************" cat "$(path_join "$__framework_sh__path" ../../Makefile)" echo "" - echo "**********" - echo "* Run.sh *" - echo "**********" - cat "$(path_join "$__framework_sh__application_directory" ./run.sh)" + echo "**************" + echo "* " "$0" " *" + echo "**************" + cat "$(path_join "$__framework_sh__application_directory" "$0")" echo "" echo "************" diff --git a/tests/bash_libraries/percentiles_table.sh b/tests/bash_libraries/percentiles_table.sh index a7fd333..6c73c52 100644 --- a/tests/bash_libraries/percentiles_table.sh +++ b/tests/bash_libraries/percentiles_table.sh @@ -36,7 +36,7 @@ percentiles_table_row() { local -r table_file="${2:?table_file not set}" check_file table_file local -r row_label="${3:?row_label not set}" - local -r format_string="${4:-%1.4f}" + local -r format_string="${4:-%1.2f}" # Count the number of results local -i sample_size diff --git a/tests/deadline_description/run.sh b/tests/deadline_description/run.sh index f160d24..275ccf3 100755 --- a/tests/deadline_description/run.sh +++ b/tests/deadline_description/run.sh @@ -17,7 +17,6 @@ source validate_dependencies.sh || exit 1 validate_dependencies awk hey jq # Please keep the element ordered alphabetically! -# declare -a workloads=(cifar10 ekf gocr lpd resize) declare -a workloads=(cifar10 ekf gocr lpd resize) declare -a multiples=(1.5 2.0 3.0 4.0) declare -ri percentile=50 diff --git a/tests/stack_overflow/edf_preemption.env b/tests/stack_overflow/edf_preemption.env index 302a324..0cd4ebf 100644 --- a/tests/stack_overflow/edf_preemption.env +++ b/tests/stack_overflow/edf_preemption.env @@ -1,3 +1,2 @@ SLEDGE_SCHEDULER=EDF SLEDGE_DISABLE_PREEMPTION=false -SLEDGE_SIGALRM_HANDLER=TRIAGED