summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0375d0d6c72..57ac33754d0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -36081,9 +36081,15 @@ mangled symbols, which can be used for directly extracting type information.")
36081 ;; be a capstone regressions, needs investigation. 36081 ;; be a capstone regressions, needs investigation.
36082 ;; 36082 ;;
36083 ;; test_concrete_memset is a non-deterministic benchmark. 36083 ;; test_concrete_memset is a non-deterministic benchmark.
36084 (invoke "pytest" "-vv" "-x" "--dist" "loadfile" 36084 ;; test_similarity_fauxware is flaky.
36085 "-k" "not test_mips32_missing_offset_in_instructions and not test_concrete_memset" 36085 (let ((to-skip '("test_mips32_missing_offset_in_instructions"
36086 "-n" (number->string (parallel-job-count))))))) 36086 "test_concrete_memset"
36087 "test_similarity_fauxware")))
36088 (invoke "pytest" "-vv" "-x" "--dist" "loadfile"
36089 "-k" (string-append
36090 "not "
36091 (string-join to-skip " and not "))
36092 "-n" (number->string (parallel-job-count))))))))
36087 (add-before 'build 'set-cc 36093 (add-before 'build 'set-cc
36088 (lambda _ 36094 (lambda _
36089 (setenv "CC" "gcc")))))) 36095 (setenv "CC" "gcc"))))))