lol

eztrace: use ctestCheckHook

+6 -2
+6 -2
pkgs/by-name/ez/eztrace/package.nix
··· 9 libbfd, 10 libopcodes, 11 otf2, 12 versionCheckHook, 13 }: 14 ··· 54 55 cmakeFlags = [ 56 (lib.cmakeBool "EZTRACE_ENABLE_MEMORY" true) 57 - # This test is somewhat flaky and fails once per several rebuilds. 58 - (lib.cmakeFeature "CMAKE_CTEST_ARGUMENTS" "--exclude-regex;memory_tests") 59 ]; 60 61 nativeBuildInputs = [ ··· 72 ]; 73 74 doCheck = true; 75 nativeCheckInputs = [ 76 otf2 # `otf2-print` needed by compiler_instrumentation_tests,pthread_tests,posixio_tests 77 ]; 78 79 postInstall = ''
··· 9 libbfd, 10 libopcodes, 11 otf2, 12 + ctestCheckHook, 13 versionCheckHook, 14 }: 15 ··· 55 56 cmakeFlags = [ 57 (lib.cmakeBool "EZTRACE_ENABLE_MEMORY" true) 58 ]; 59 60 nativeBuildInputs = [ ··· 71 ]; 72 73 doCheck = true; 74 + disabledTests = [ 75 + # This test is somewhat flaky and fails once per several rebuilds. 76 + "memory_tests" 77 + ]; 78 nativeCheckInputs = [ 79 otf2 # `otf2-print` needed by compiler_instrumentation_tests,pthread_tests,posixio_tests 80 + ctestCheckHook 81 ]; 82 83 postInstall = ''