tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
eztrace: use ctestCheckHook
Sergei Zimmerman
10 months ago
5eb77369
a429add2
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ez
eztrace
package.nix
+6
-2
pkgs/by-name/ez/eztrace/package.nix
···
9
libbfd,
10
libopcodes,
11
otf2,
0
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;
0
0
0
0
75
nativeCheckInputs = [
76
otf2 # `otf2-print` needed by compiler_instrumentation_tests,pthread_tests,posixio_tests
0
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)
0
0
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 = ''