diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-03-05 19:42:52 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-03-05 19:43:48 +0100 |
commit | 5f0c649683aeba9f7272d81277cec37fd36af880 (patch) | |
tree | c8e7596930284fdf6f84400770317cb3e5df0841 /gnu/packages/audio.scm | |
parent | ba5c85679db3f7cf976b5edfbabb7cfe19a329c9 (diff) |
gnu: ardour: Enable tests.
* gnu/packages/audio.scm (ardour)[arguments]: Enable unit tests.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 3d943dc01c..2b11a32caf 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -209,13 +209,14 @@ namespace ARDOUR { const char* revision = \"" version "\" ; }"))))) (arguments `(#:configure-flags '("--cxx11" ; required by gtkmm "--no-phone-home" ; don't contact ardour.org - "--freedesktop") ; install .desktop file + "--freedesktop" ; install .desktop file + "--test") ; build unit tests #:phases (modify-phases %standard-phases (add-after 'unpack 'set-rpath-in-LDFLAGS ,(ardour-rpath-phase (version-prefix version 1)))) - #:tests? #f ; no check target + #:test-target "test" #:python ,python-2)) (inputs `(("alsa-lib" ,alsa-lib) |