1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
{
enableGStreamer,
enableGtk2,
enableGtk3,
gst_all_1,
lib,
opencv4,
runAccuracyTests,
runCommand,
runPerformanceTests,
stdenv,
testDataSrc,
writableTmpDirAsHomeHook,
xvfb-run,
}:
let
inherit (lib) getExe optionals optionalString;
inherit (opencv4.passthru) cudaSupport;
inherit (stdenv.hostPlatform) isAarch64 isDarwin;
in
runCommand "opencv4-tests"
{
__structuredAttrs = true;
strictDeps = true;
nativeBuildInputs = [
writableTmpDirAsHomeHook
]
++ optionals enableGStreamer (
with gst_all_1;
[
gstreamer
gst-plugins-base
gst-plugins-good
]
);
ignoredTests = [
"AsyncAPICancelation/cancel*"
"Photo_CalibrateDebevec.regression"
# /build/source/modules/imgproc/test/test_connectedcomponents.cpp:444: Failure
# Expected equality of these values:
# cv::countNonZero(diff)
# Which is: 243
# 0
# Probably related to https://github.com/opencv/opencv/issues/28383
"Imgproc_ConnectedComponents.chessboard_even"
"Imgproc_ConnectedComponents.chessboard_odd"
"Imgproc_ConnectedComponents.maxlabels_8conn_even"
"Imgproc_ConnectedComponents.maxlabels_8conn_odd"
"Imgproc_ConnectedComponents.spaghetti_bbdt_sauf_stats"
]
++ optionals cudaSupport [
# opencv4-tests> /build/source/modules/photo/test/test_denoising.cuda.cpp:115: Failure
# opencv4-tests> The max difference between matrices "bgr_gold" and "dbgr" is 2 at (339, 486), which exceeds "1", where "bgr_gold" at (339, 486) evaluates to (182, 239, 239), "dbgr" at (339, 486) evaluates to (184, 239, 239), "1" evaluates to 1
# opencv4-tests> [ FAILED ] CUDA_FastNonLocalMeans.Regression (48 ms)
"CUDA_FastNonLocalMeans.Regression"
];
inherit runAccuracyTests;
accuracyTestNames = [
# "calib3d" # reached a month of CPU time without completing
"core"
"features2d"
"flann"
"imgcodecs"
"imgproc"
"ml"
"objdetect"
"photo"
"stitching"
"video"
#"videoio" # - a lot of GStreamer warnings and failed tests
#"dnn" #- some caffe tests failed, probably because github workflow also downloads additional models
]
++ optionals (!isAarch64 && enableGStreamer) [ "gapi" ]
++ optionals (enableGtk2 || enableGtk3) [ "highgui" ];
inherit runPerformanceTests;
performanceTestNames = [
# "calib3d" # reached a month of CPU time without completing
"core"
"features2d"
"imgcodecs"
"imgproc"
"objdetect"
"photo"
"stitching"
"video"
]
++ optionals (!isAarch64 && enableGStreamer) [ "gapi" ];
testRunner = optionalString (!isDarwin) "${getExe xvfb-run} -a ";
requiredSystemFeatures = [ "big-parallel" ] ++ optionals cudaSupport [ "cuda" ];
}
''
set -euo pipefail
# several tests want a write access, so we have to copy files
nixLog "Preparing test data"
cp -R "${testDataSrc}" "$HOME/opencv_extra"
chmod -R +w "$HOME/opencv_extra"
export OPENCV_TEST_DATA_PATH="$HOME/opencv_extra/testdata"
export OPENCV_SAMPLES_DATA_PATH="${opencv4.package_tests}/samples/data"
# ignored tests because of gtest error - "Test code is not available due to compilation error with GCC 11"
# ignore test due to numerical instability
if [[ -n ''${ignoredTests+x} ]]; then
export GTEST_FILTER="-$(concatStringsSep ":" ignoredTests)"
nixLog "Using GTEST_FILTER: $GTEST_FILTER"
fi
if [[ -n $runAccuracyTests ]]; then
nixLog "Running accuracy tests"
for testName in "''${accuracyTestNames[@]}"; do
nixLog "Running accuracy test: $testName"
''${testRunner}${opencv4.package_tests}/opencv_test_''${testName} \
--test_threads=$NIX_BUILD_CORES
done
nixLog "Finished running accuracy tests"
fi
if [[ -n $runPerformanceTests ]]; then
nixLog "Running performance tests"
for testName in "''${performanceTestNames[@]}"; do
nixLog "Running performance test: $testName"
''${testRunner}${opencv4.package_tests}/opencv_perf_''${testName} \
--perf_impl=plain \
--perf_min_samples=10 \
--perf_force_samples=10 \
--perf_verify_sanity \
--skip_unstable=1
done
nixLog "Finished running performance tests"
fi
nixLog "Finished running tests"
touch "$out"
''
|