tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
opencv: fix typo
"perfomanceTests" -> "performanceTests"
fetsorn
2 years ago
d454823d
72429736
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
opencv
tests.nix
+2
-2
pkgs/development/libraries/opencv/tests.nix
reviewed
···
57
57
(map (test: "${testRunner}${opencv4.package_tests}/opencv_test_${test} --test_threads=$NIX_BUILD_CORES --gtest_filter=$GTEST_FILTER" ) testNames)
58
58
}
59
59
'';
60
60
-
perfomanceTests = lib.optionalString runPerformanceTests ''
60
60
+
performanceTests = lib.optionalString runPerformanceTests ''
61
61
${ builtins.concatStringsSep "\n"
62
62
(map (test: "${testRunner}${opencv4.package_tests}/opencv_perf_${test} --perf_impl=plain --perf_min_samples=10 --perf_force_samples=10 --perf_verify_sanity --skip_unstable=1 --gtest_filter=$GTEST_FILTER") perfTestNames)
63
63
}
···
67
67
{
68
68
nativeBuildInputs = lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good ]);
69
69
}
70
70
-
(testsPreparation + accuracyTests + perfomanceTests)
70
70
+
(testsPreparation + accuracyTests + performanceTests)