757ef16e76
The one actual diff -%if 0%{?rhel} == 7 +%if 0%{?rhel} == 7 || (0%{?rhel} == 8 && %{rhel8_minor_version} >= 9) is instead to be applied to rhel-* branches to stay in sync.
10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Analyze and print test failures
|
|
|
|
export TEST_DIR="test_results"
|
|
|
|
#./print-errors $TEST_DIR ""
|
|
./print-errors $TEST_DIR "-wr"
|
|
#./print-error-reftest $TEST_DIR ""
|
|
./print-error-reftest $TEST_DIR "-wr"
|