Created
October 2, 2017 19:22
-
-
Save Leonidas-from-XIV/2c22cdcefe1143a5ae177bde29164aae to your computer and use it in GitHub Desktop.
How do I get `jbuild runtest -p redis-async` to work?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(jbuild_version 1) | |
(library | |
((name redis_test) | |
(modules test) | |
(wrapped false) | |
(libraries (redis oUnit)))) | |
(executable | |
((name test_sync) | |
(libraries (redis_test redis_sync)) | |
(modules (test_sync)))) | |
(executable | |
((name test_lwt) | |
(libraries (redis_test redis_lwt)) | |
(modules (test_lwt)))) | |
(executable | |
((name test_async) | |
(libraries (redis_test redis_async)) | |
(modules (test_async)))) | |
(alias | |
((name runtest) | |
(deps (test_lwt.exe)) | |
(package redis-lwt) | |
(action (run ${<})))) | |
(alias | |
((name runtest) | |
(deps (test_async.exe)) | |
(package redis-async) | |
(action (run ${<})))) | |
(alias | |
((name runtest) | |
(deps (test_sync.exe)) | |
(package redis-sync) | |
(action (run ${<})))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment