haskellPackages.warp: enable tests and fix eval error

This commit is contained in:
Rodney Lorrimar 2023-12-22 16:34:17 +08:00
parent d34c05a7c3
commit a6e59fff33
No known key found for this signature in database
GPG Key ID: D8B75C95FB4D1143
2 changed files with 3 additions and 4 deletions

View File

@ -265,9 +265,6 @@ self: super: {
})];
}) super.ConfigFile;
# The curl executable is required for withApplication tests.
warp_3_3_29 = addTestToolDepend pkgs.curl super.warp_3_3_29;
# The NCG backend for aarch64 generates invalid jumps in some situations,
# the workaround on 9.6 is to revert to the LLVM backend (which is used
# for these sorts of situations even on 9.2 and 9.4).

View File

@ -394,7 +394,6 @@ self: super: builtins.intersectAttrs super {
socket = dontCheck super.socket;
stackage = dontCheck super.stackage; # http://hydra.cryp.to/build/501867/nixlog/1/raw
textocat-api = dontCheck super.textocat-api; # http://hydra.cryp.to/build/887011/log/raw
warp = dontCheck super.warp; # http://hydra.cryp.to/build/501073/nixlog/5/raw
wreq = dontCheck super.wreq; # http://hydra.cryp.to/build/501895/nixlog/1/raw
wreq-sb = dontCheck super.wreq-sb; # http://hydra.cryp.to/build/783948/log/raw
wuss = dontCheck super.wuss; # http://hydra.cryp.to/build/875964/nixlog/2/raw
@ -414,6 +413,9 @@ self: super: builtins.intersectAttrs super {
mustache = dontCheck super.mustache;
arch-web = dontCheck super.arch-web;
# The curl executable is required for withApplication tests.
warp = addTestToolDepend pkgs.curl super.warp;
# Test suite requires running a database server. Testing is done upstream.
hasql = dontCheck super.hasql;
hasql-dynamic-statements = dontCheck super.hasql-dynamic-statements;