nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

opencv: fix typo

"perfomanceTests" -> "performanceTests"

fetsorn d454823d 72429736

+2 -2
+2 -2
pkgs/development/libraries/opencv/tests.nix
··· 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 - perfomanceTests = lib.optionalString runPerformanceTests '' 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 - (testsPreparation + accuracyTests + perfomanceTests) 70 + (testsPreparation + accuracyTests + performanceTests)