[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/13: gnu: benchmark: Add bonnie++.
From: |
guix-commits |
Subject: |
10/13: gnu: benchmark: Add bonnie++. |
Date: |
Wed, 26 Feb 2020 15:57:39 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit 176dd26b38410b371a6283813698d6d7a419ada3
Author: Vincent Legoll <address@hidden>
AuthorDate: Sat Feb 22 00:37:23 2020 +0100
gnu: benchmark: Add bonnie++.
* gnu/packages/benchmark.scm (bonnie++): New variable.
Signed-off-by: Marius Bakke <address@hidden>
---
gnu/packages/benchmark.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/benchmark.scm b/gnu/packages/benchmark.scm
index 602681a..9ae30ee 100644
--- a/gnu/packages/benchmark.scm
+++ b/gnu/packages/benchmark.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2019 Eric Bavier <address@hidden>
;;; Copyright © 2019 Gábor Boskovits <address@hidden>
;;; Copyright © 2019 Ludovic Courtès <address@hidden>
+;;; Copyright © 2020 Vincent Legoll <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -35,6 +36,7 @@
#:use-module (gnu packages linux)
#:use-module (gnu packages maths)
#:use-module (gnu packages mpi)
+ #:use-module (gnu packages perl)
#:use-module (gnu packages python)
#:use-module (gnu packages python-science)
#:use-module (gnu packages python-xyz)
@@ -231,3 +233,28 @@ This can give a much better understanding of the command's
performance.")
"Benchmark is a library to benchmark code snippets,
similar to unit tests.")
(license license:asl2.0)))
+
+(define-public bonnie++
+ (package
+ (name "bonnie++")
+ (version "1.98")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "https://www.coker.com.au/bonnie++/bonnie++-"
+ version ".tgz"))
+ (sha256
+ (base32
+ "010bmlmi0nrlp3aq7p624sfaj5a65lswnyyxk3cnz1bqig0cn2vf"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("perl" ,perl)))
+ (arguments '(#:tests? #f)) ; there are no tests
+ (home-page "https://doc.coker.com.au/projects/bonnie/")
+ (synopsis "Hard drive and file system benchmark suite")
+ (description
+ "Bonnie++ is a benchmark suite that is aimed at performing a number of
+simple tests of hard drive and file system performance. Bonnie++ allows you to
+benchmark how your file systems perform with respect to data read and write
+speed, the number of seeks that can be performed per second, and the number of
+file metadata operations that can be performed per second.")
+ (license license:gpl2))) ;GPL 2 only, see copyright.txt
- branch master updated (b68f5a6 -> e524b57), guix-commits, 2020/02/26
- 01/13: gnu: pocl: Build with LLVM@9., guix-commits, 2020/02/26
- 02/13: gnu: LibUV: Add version 1.34.2., guix-commits, 2020/02/26
- 03/13: gnu: nghttp2: Add version 1.40.0., guix-commits, 2020/02/26
- 06/13: gnu: clang: Fix C++ search path handling on non-x86_64., guix-commits, 2020/02/26
- 04/13: gnu: node: Update to 10.19.0., guix-commits, 2020/02/26
- 05/13: gnu: node: Disable failing tests on armhf-linux., guix-commits, 2020/02/26
- 08/13: gnu: emacs-elixir-mode: Fix capitalization in description., guix-commits, 2020/02/26
- 10/13: gnu: benchmark: Add bonnie++.,
guix-commits <=
- 07/13: gnu: clang: Move version conditionals out of the builder., guix-commits, 2020/02/26
- 11/13: gnu: musl: Update to 1.2.0., guix-commits, 2020/02/26
- 12/13: gnu: vim-full: Describe differences from vim., guix-commits, 2020/02/26
- 09/13: gnu: emacs-eacl: Fix typo in description., guix-commits, 2020/02/26
- 13/13: gnu: awscli: Update to 1.18.6., guix-commits, 2020/02/26